Farmbot-Web-App/webpack/entry.tsx

16 lines
423 B
TypeScript
Raw Normal View History

2017-06-29 12:54:02 -06:00
/// <reference path="../typings/index.d.ts" />
2017-10-12 10:47:39 -06:00
/**
* THIS IS THE ENTRY POINT FOR THE MAIN PORTION OF THE WEB APP.
2017-10-12 12:47:29 -06:00
*
* Try to keep this file light. */
2017-06-29 12:54:02 -06:00
import { detectLanguage } from "./i18n";
2017-10-12 12:47:29 -06:00
import { stopIE, shortRevision } from "./util";
2017-10-12 12:29:56 -06:00
import { init } from "i18next";
2017-10-12 12:47:29 -06:00
import { attachAppToDom } from "./routes";
2017-08-10 13:11:17 -06:00
2017-06-29 12:54:02 -06:00
stopIE();
2017-08-09 10:13:04 -06:00
2017-10-12 10:47:39 -06:00
console.log(shortRevision());
2017-06-29 12:54:02 -06:00
2017-10-12 12:47:29 -06:00
detectLanguage().then(config => init(config, attachAppToDom));