feat: initial commit - Band Management application

This commit is contained in:
2026-01-06 03:11:46 +01:00
commit 34e12e00b3
24543 changed files with 3991790 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { cookieRef } from '@layouts/stores/config'
import { themeConfig } from '@themeConfig'
const messages = Object.fromEntries(
Object.entries(
import.meta.glob('@/plugins/i18n/locales/*.json', { eager: true }))
.map(([key, value]) => [key.slice(-7, -5), value.default]),
)
export default defineI18nConfig(() => ({
legacy: false,
locale: cookieRef('language', themeConfig.app.i18n.defaultLocale).value,
fallbackLocale: 'en',
messages,
}))