//import 'es6-promise/auto'; //import 'utils/ie11'; import React from 'react'; import { render } from 'react-dom'; import Root from 'components/Root'; import initRouter from 'utils/router'; import Socket from 'utils/Socket'; import configureStore from './store'; import routes from './routes'; import runModules from './modules'; import '../css/fonts.css'; import '../css/fontello.css'; import '../css/style.css'; const production = process.env.NODE_ENV === 'production'; const host = production ? window.location.host : `${window.location.hostname}:1337`; const socket = new Socket(host); const store = configureStore(socket); initRouter(routes, store); runModules({ store, socket }); render(, document.getElementById('root'));