aboutsummaryrefslogtreecommitdiffstats
path: root/sanity/schemas/_locales.ts
blob: 8baca54a8874919fa052528259f12f4ec95d733b (plain) (blame)
1
2
3
4
5
export const supportedLanguages = [
    { id: 'en', iso: "en-GB", title: 'English' },
    { id: 'nb', iso: "nb-NO", title: 'Norwegian', isDefault: true },
]
export const baseLanguage = supportedLanguages.find(l => l.isDefault) as { id: string, title: string };