Update i18n.config.ts

This commit is contained in:
Daltonganger
2025-02-20 21:13:14 +01:00
committed by GitHub
parent 46b7886283
commit 36b4f55e1b

View File

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