mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-19 21:46:19 +00:00
16 lines
269 B
TypeScript
16 lines
269 B
TypeScript
import i18n from "i18next";
|
|
import { initReactI18next } from "react-i18next";
|
|
import en from "./locales/en.json";
|
|
|
|
i18n.use(initReactI18next).init({
|
|
resources: {
|
|
en: {
|
|
translation: en,
|
|
},
|
|
},
|
|
lng: "en",
|
|
fallbackLng: "en",
|
|
});
|
|
|
|
export default i18n;
|