-
julio-rocketchat authoredjulio-rocketchat authored
main.ts 513 B
import './serviceWorker';
import './startup/accounts';
import { FlowRouter } from 'meteor/ostrio:flow-router-extra';
FlowRouter.wait();
FlowRouter.notFound = {
action: () => undefined,
};
import('./polyfills')
.then(() => import('./meteorOverrides'))
.then(() => import('./ecdh'))
.then(() => import('./importPackages'))
.then(() => import('./startup'))
.then(() => import('./omnichannel'))
.then(() => Promise.all([import('./views/admin'), import('./views/marketplace'), import('./views/account')]));