Skip to content

Instantly share code, notes, and snippets.

@PythonDevOp
Created August 22, 2017 02:43
Show Gist options
  • Save PythonDevOp/415b0c038f9549371510de7cbd5eace2 to your computer and use it in GitHub Desktop.
Save PythonDevOp/415b0c038f9549371510de7cbd5eace2 to your computer and use it in GitHub Desktop.
main.ts
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);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment