aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/sanity/locales.ts
blob: c3280f4d02a259bc224d01a36ed5c55c9aa945c4 (plain) (blame)
1
2
3
4
5
export const supportedLanguages = [
    { id: "en", title: "English" },
    { id: "nb", title: "Norsk Bokmål", isDefault: true },
];
export const baseLanguage = supportedLanguages.find((l) => l.isDefault) as { id: string; title: string, isDefault: boolean };