aboutsummaryrefslogtreecommitdiffstats
path: root/sanity/schemas/_locales.ts
blob: 20273bd2ce33a479d9637edc370b8ed0245e528d (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};