mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
10 lines
294 B
TypeScript
10 lines
294 B
TypeScript
|
import i18next from 'i18next';
|
||
|
import { initReactI18next } from 'react-i18next';
|
||
|
|
||
|
void i18next.use(initReactI18next).init({
|
||
|
// Simple resources for testing
|
||
|
resources: { en: { translation: { admin_console: { general: { add: 'Add' } } } } },
|
||
|
lng: 'en',
|
||
|
react: { useSuspense: false },
|
||
|
});
|