| 12345678910111213141516171819 |
- // src/i18n.ts
- import i18next from 'i18next';
- import Backend from 'i18next-http-backend';
- i18next
- .use(Backend)
- .init({
- lng: 'zh', // 默认语言
- fallbackLng: 'en', // 回退语言
- debug: true, // 开启调试模式
- backend: {
- loadPath: '/assets/locales/{{lng}}/{{ns}}.json',
- },
- interpolation: {
- escapeValue: false, // 不需要转义
- },
- });
- export default i18next;
|