Skip to content

Instantly share code, notes, and snippets.

@neilcummings
Created May 7, 2017 10:33
Show Gist options
  • Save neilcummings/56a07129e7a9e5e28c349dcf9bc4bef1 to your computer and use it in GitHub Desktop.
Save neilcummings/56a07129e7a9e5e28c349dcf9bc4bef1 to your computer and use it in GitHub Desktop.
SharePointAddinAngular - main.ts
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { enableProdMode } from '@angular/core';
import { AppModule } from './app/app.module';
if (process.env.ENV === 'production') {
enableProdMode();
}
platformBrowserDynamic().bootstrapModule(AppModule);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment