mirror of
https://github.com/uetchy/namae.git
synced 2025-03-17 04:30:31 +09:00
31 lines
817 B
TypeScript
31 lines
817 B
TypeScript
// this adds jest-dom's custom assertions
|
|
import '@testing-library/jest-dom/extend-expect';
|
|
|
|
// i18next
|
|
import { join } from 'path';
|
|
import i18n from 'i18next';
|
|
import Backend from 'i18next-chained-backend';
|
|
import NodeFs from 'i18next-node-fs-backend';
|
|
import LanguageDetector from 'i18next-browser-languagedetector';
|
|
import { initReactI18next } from 'react-i18next';
|
|
|
|
i18n
|
|
.use(Backend)
|
|
.use(LanguageDetector)
|
|
.use(initReactI18next)
|
|
.init({
|
|
backend: {
|
|
backends: [NodeFs],
|
|
backendOptions: [
|
|
{ loadPath: join(__dirname, '../public/locales/{{lng}}/{{ns}}.json') },
|
|
],
|
|
},
|
|
fallbackLng: 'en',
|
|
ns: ['translation'],
|
|
defaultNS: 'translation',
|
|
debug: false,
|
|
interpolation: {
|
|
escapeValue: false, // not needed for react as it escapes by default
|
|
},
|
|
});
|