10 lines
206 B
TypeScript
10 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 }
|
||
|
|
}))
|