2015-12-11 11:50:57 -08:00
|
|
|
// #docregion
|
2016-08-09 17:38:25 +01:00
|
|
|
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
|
|
import { AppModule } from './app.module';
|
2016-05-03 14:06:32 +02:00
|
|
|
|
2016-08-09 17:38:25 +01:00
|
|
|
// Compiles the module (asynchronously) with the runtime compiler
|
|
|
|
// which generates a compiled module factory in memory.
|
|
|
|
// Then bootstraps with that factory, targeting the browser.
|
|
|
|
platformBrowserDynamic().bootstrapModule(AppModule);
|