elearning/Frontend-Learner/i18n.config.ts

10 lines
206 B
TypeScript
Raw Normal View History

import th from './i18n/locales/th.json'
import en from './i18n/locales/en.json'
export default defineI18nConfig(() => ({
legacy: false,
locale: 'th',
fallbackLocale: 'th',
messages: { th, en }
}))