From 685a4c9be9ca3351c02f52e28dc73f32adc783c9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 20:57:31 +0000 Subject: [PATCH] Add src/lib/i18nConfig.ts --- src/lib/i18nConfig.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/lib/i18nConfig.ts diff --git a/src/lib/i18nConfig.ts b/src/lib/i18nConfig.ts new file mode 100644 index 0000000..0a25afd --- /dev/null +++ b/src/lib/i18nConfig.ts @@ -0,0 +1,6 @@ +export const i18n = { + defaultLocale: 'en', + locales: ['en', 'fr', 'es'], // Define your supported locales +} as const; + +export type Locale = (typeof i18n)['locales'][number];