diff --git a/src/App.vue b/src/App.vue
index 31ff36b..92345a1 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,6 +1,8 @@

+
+
@@ -8,12 +10,14 @@
+
+
+
diff --git a/src/game/combat.ts b/src/game/combat.ts
index 4a4de6d..355b30c 100644
--- a/src/game/combat.ts
+++ b/src/game/combat.ts
@@ -40,10 +40,10 @@ export enum Stat {
export type Stats = {[key in Stat]: number}
export enum State {
- Normal,
- Grappled,
- Grappling,
- Eaten
+ Normal = 'Normal',
+ Grappled = 'Grappled',
+ Grappling = 'Grappling',
+ Eaten = 'Eaten'
}
export interface Combatant {
diff --git a/vue.config.js b/vue.config.js
new file mode 100644
index 0000000..8ac021f
--- /dev/null
+++ b/vue.config.js
@@ -0,0 +1,10 @@
+module.exports = {
+ chainWebpack: config => {
+ config
+ .plugin('html')
+ .tap(args => {
+ args[0].title = 'Feast'
+ return args
+ })
+ }
+}