Skip to content

Instantly share code, notes, and snippets.

@sarunint
Created September 8, 2016 15:02
Show Gist options
  • Save sarunint/d19269000028d504685f38f206410dc0 to your computer and use it in GitHub Desktop.
Save sarunint/d19269000028d504685f38f206410dc0 to your computer and use it in GitHub Desktop.
import './polyfills.ts';
import { enableProdMode } from '@angular/core';
import { environment } from './environments/environment';
import { AppModuleNgFactory } from './app/app.module.ngfactory';
import { platformBrowser } from '@angular/platform-browser';
if (environment.production) {
enableProdMode();
}
platformBrowser().bootstrapModuleFactory(AppModuleNgFactory);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment