mirror of
https://github.com/beilunyang/moemail.git
synced 2026-06-03 06:30:05 +08:00
12 lines
218 B
TypeScript
12 lines
218 B
TypeScript
export const locales = ['en', 'zh-CN'] as const
|
|
export type Locale = typeof locales[number]
|
|
|
|
export const defaultLocale: Locale = 'en'
|
|
|
|
export const i18n = {
|
|
locales,
|
|
defaultLocale,
|
|
localePrefix: 'as-needed',
|
|
}
|
|
|