diff --git a/frontend/src/components/Settings.vue b/frontend/src/components/Settings.vue index 0374719..682f904 100644 --- a/frontend/src/components/Settings.vue +++ b/frontend/src/components/Settings.vue @@ -21,6 +21,17 @@ const possibleLabels = [ 'Rosebud', 'You show that customer', 'Do it for Berend', + 'To the bad cave!', + 'The more you earn, the more you learn', + 'Fortune sides with him who dares', + 'Up, Up, Down, Down, Left, Right, Left, Right, B, A.', + 'Show me the money', + 'Something for nothing', + 'There is no cow level', + 'WhatIsBestInLife', + 'RealMenDrillDeep', + 'WhySoSerious', + 'IAmIronMan', ]; const label = randomLabel(possibleLabels); @@ -72,4 +83,4 @@ function onClick() { {{ label.label.value }} - \ No newline at end of file + diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 46627ea..f465f55 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -3,7 +3,7 @@ import vue from '@vitejs/plugin-vue'; import { resolve } from 'path'; // https://vitejs.dev/config/ -export default defineConfig(({ mode }) => ({ +export default defineConfig({ plugins: [vue()], base: '/', resolve: { @@ -11,4 +11,4 @@ export default defineConfig(({ mode }) => ({ '@': resolve(__dirname, './src'), }, }, -})); +});