Farmbot-Web-App/frontend/front_page/index.tsx

9 lines
237 B
TypeScript

import { detectLanguage } from "../i18n";
import I from "i18next";
import { stopIE } from "../util/stop_ie";
import { attachFrontPage } from "./front_page";
stopIE();
detectLanguage().then((config) => I.init(config, attachFrontPage));