Enough for today
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 49s

This commit is contained in:
2026-04-26 00:52:59 +02:00
parent c3e5448597
commit b69e571202
89 changed files with 2727 additions and 58 deletions

View File

@@ -5,7 +5,8 @@ export default defineNuxtConfig({
include: [
'@vue/devtools-core',
'@vue/devtools-kit',
'axios'
'axios',
'mitt'
]
}
},
@@ -24,4 +25,16 @@ export default defineNuxtConfig({
apiBaseUrl: process.env.API_BASE_URL || 'http://localhost:5000/api'
}
},
i18n: {
locales: [
{ code: 'en', iso: 'en-US', name: '🇺🇸 English', file: 'en.json' },
{ code: 'es', iso: 'es-ES', name: '🇪🇸 Spanish', file: 'es.json' },
{ code: 'ca', iso: 'ca-ES', name: '🇦🇩 Catalan', file: 'ca.json' }
],
defaultLocale: 'en',
vueI18n: './i18n.config.ts',
langDir: 'locales/'
},
modules: ['@nuxtjs/i18n']
})