import i18n from 'i18next'; import { initReactI18next } from 'react-i18next'; import en from './locales/en.json'; export const resources = { en, } as const; export const initI18n = () => { i18n.use(initReactI18next).init({ compatibilityJSON: 'v3', resources, lng: 'en', // if you're using a language detector, do not define the lng option fallbackLng: 'en', interpolation: { escapeValue: false, // react already safes from xss => https://www.i18next.com/translation-function/interpolation#unescape }, }); };