website/i18n-config.ts

6 lines
141 B
TypeScript

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