From 67aeb58453cb3bb1e997bc1c47348efcdeee32c4 Mon Sep 17 00:00:00 2001 From: mehrzadghdev Date: Fri, 4 Jul 2025 00:25:14 +0330 Subject: [PATCH] chore: remove i18n.ts unused file --- src/i18n.ts | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/i18n.ts 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;