mirror of
https://github.com/vercel/commerce.git
synced 2025-05-14 21:47:51 +00:00
15 lines
258 B
TypeScript
15 lines
258 B
TypeScript
export const supportedLanguages = {
|
|
defaultLocale: 'sv',
|
|
locales: [
|
|
{
|
|
id: 'sv',
|
|
title: 'Swedish'
|
|
},
|
|
{
|
|
id: 'en',
|
|
title: 'English'
|
|
}
|
|
],
|
|
} as const
|
|
|
|
export type Locale = typeof supportedLanguages['locales'][number] |