mirror of
https://github.com/vercel/commerce.git
synced 2025-05-15 14:06:59 +00:00
7 lines
137 B
TypeScript
7 lines
137 B
TypeScript
export const i18n = {
|
|
defaultLocale: 'en',
|
|
locales: ['en', 'ja']
|
|
} as const;
|
|
|
|
export type Locale = (typeof i18n)['locales'][number];
|