website/i18n-config.ts

8 lines
163 B
TypeScript
Raw Normal View History

2024-06-17 20:24:51 +03:00
export const i18n = {
2024-09-10 10:23:43 +03:00
locales: ['bg', 'en'],
defaultLocale: 'bg',
localeDetection: true,
2024-06-17 20:24:51 +03:00
} as const;
2024-09-10 10:23:43 +03:00
export type Locale = (typeof i18n)['locales'][number];