mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 08:33:00 -06:00
18 lines
401 B
TypeScript
18 lines
401 B
TypeScript
import './imports/polyfills';
|
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
import { enableProdMode } from '@angular/core';
|
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
import { AppModule } from './imports/app/app.module';
|
|
|
|
Meteor.startup(() => {
|
|
|
|
if (Meteor.isProduction) {
|
|
enableProdMode();
|
|
}
|
|
|
|
platformBrowserDynamic().bootstrapModule(AppModule);
|
|
|
|
});
|