chore: bump nuxt and other dependencies

This commit is contained in:
AnotiaWang
2025-03-09 21:24:36 +08:00
parent 72ea01b380
commit e5b3cdda76
3 changed files with 2114 additions and 1024 deletions

14
i18n/i18n.config.ts Normal file
View File

@ -0,0 +1,14 @@
import en from '~~/i18n/en.json'
import zh from '~~/i18n/zh.json'
import nl from '~~/i18n/nl.json'
export default defineI18nConfig(() => ({
legacy: false,
fallbackLocale: 'zh',
availableLocales: ['en', 'zh', 'nl'],
messages: {
en,
zh,
nl,
},
}))