Files
MemoryBear/web/src/i18n/index.ts

20 lines
330 B
TypeScript

import i18n from 'i18next'
import { initReactI18next } from 'react-i18next'
import { en } from './en'
import { zh } from './zh'
i18n
.use(initReactI18next)
.init({
resources: {
en,
zh,
},
lng: 'en',
fallbackLng: 'en',
interpolation: {
escapeValue: false,
},
})
export default i18n