elearning/Frontend-Learner/i18n.config.ts

9 lines
206 B
TypeScript

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 }
}))