The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/apps/meteor/client/main.ts

15 lines
559 B

import { FlowRouter } from 'meteor/kadira:flow-router';
FlowRouter.wait();
FlowRouter.notFound = {
action: () => undefined,
};
import('./polyfills')
.then(() => Promise.all([import('./lib/meteorCallWrapper'), import('../lib/oauthRedirectUriClient')]))
.then(() => import('../ee/client/ecdh'))
.then(() => import('./importPackages'))
.then(() => Promise.all([import('./methods'), import('./startup')]))
.then(() => import('../ee/client'))
.then(() => Promise.all([import('./views/admin'), import('./views/marketplace'), import('./views/account')]));