chore: remove i18n.ts unused file

This commit is contained in:
2025-07-04 00:25:14 +03:30
parent 01658964f7
commit 67aeb58453

View File

@@ -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;