import i18n from 'i18next'; import { initReactI18next } from 'react-i18next'; const options:object = { compatibilityJSON: 'v3', fallbackLng: 'en', defaultNS: 'common', debug: false, resources: {}, lng: i18n?.language ?? 'en', // default language to use. interpolation: { escapeValue: false, }, } i18n .use(initReactI18next) .init(options); export default i18n;