Spaces:
Paused
Paused
| import i18n from 'i18next' | |
| import { initReactI18next } from 'react-i18next' | |
| import LanguageDetector from 'i18next-browser-languagedetector' | |
| import { resources } from './locales' | |
| i18n | |
| .use(LanguageDetector) | |
| .use(initReactI18next) | |
| .init({ | |
| resources, | |
| fallbackLng: 'en-US', | |
| interpolation: { | |
| escapeValue: false, // react already safes from xss | |
| }, | |
| react: { | |
| useSuspense: false, | |
| }, | |
| detection: { | |
| order: ['localStorage', 'navigator'], | |
| caches: ['localStorage'], | |
| }, | |
| }) | |
| export default i18n | |