diff --git a/src/i18n.ts b/src/i18n.ts deleted file mode 100644 index 0276a94..0000000 --- a/src/i18n.ts +++ /dev/null @@ -1,18 +0,0 @@ -import i18n from 'i18next'; -import i18nBackend from 'i18next-http-backend'; -import { initReactI18next } from 'react-i18next'; - -i18n - .use(i18nBackend) - .use(initReactI18next) - .init({ - lng: 'en', - interpolation: { - escapeValue: false, - }, - backend: { - loadPath: `${window.location.origin}/i18n/{{lng}}.json`, - }, - }); - -export default i18n;