From 36b4f55e1b39bf43b41b5abae4f71d4f2d6fb16c Mon Sep 17 00:00:00 2001 From: Daltonganger Date: Thu, 20 Feb 2025 21:13:14 +0100 Subject: [PATCH] Update i18n.config.ts --- i18n.config.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/i18n.config.ts b/i18n.config.ts index 5e275bc..39371c3 100644 --- a/i18n.config.ts +++ b/i18n.config.ts @@ -1,12 +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'], + availableLocales: ['en', 'zh', 'nl'], messages: { en, zh, + nl, }, }))