website/i18n-config.ts

8 lines
163 B
TypeScript

export const i18n = {
locales: ['bg', 'en'],
defaultLocale: 'bg',
localeDetection: true,
} as const;
export type Locale = (typeof i18n)['locales'][number];