Skip to content

Instantly share code, notes, and snippets.

@zenius
Created August 21, 2019 11:20
Show Gist options
  • Save zenius/632e45103030afa159493a554ece26be to your computer and use it in GitHub Desktop.
Save zenius/632e45103030afa159493a554ece26be to your computer and use it in GitHub Desktop.
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app/app.module';
platformBrowserDynamic().bootstrapModule(AppModule)
.then(success => console.log(`Bootstrap success`))
.catch(err => console.error(err));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment