import i18n from 'i18next' import {initReactI18next} from 'react-i18next' import Fetch from 'i18next-fetch-backend' i18n.use(initReactI18next) .use(Fetch) .init({ lng: Common.Locale.currentLang, fallbackLng: "en", escapeValue: false, backend: { loadPath: './locale/{{lng}}.json' }, interpolation: { escapeValue: false }, }); export default i18n;