view src/main.ts @ 367:f967cb22a37a

Clear when updating, not functional difference in this app as it stands because components only receive inputs once atm.
author Lucas Thompson <dev@lucas.im>
date Tue, 30 May 2017 18:19:55 +0100
parents 53ea6406d601
children
line wrap: on
line source
import 'polyfills';
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

import { AppModule } from './app/app.module';
import { environment } from './environments/environment';

if (environment.production) {
  enableProdMode();
}

platformBrowserDynamic().bootstrapModule(AppModule);