2016-07-12 18:14:13 -07:00
|
|
|
// #docplaster
|
|
|
|
|
/*
|
|
|
|
|
// #docregion
|
|
|
|
|
// The browser platform without a compiler
|
|
|
|
|
import { platformBrowser } from '@angular/platform-browser';
|
|
|
|
|
|
|
|
|
|
// The app module factory produced by the static offline compiler
|
2017-02-02 18:38:17 +00:00
|
|
|
import { AppModuleNgFactory } from './app/app.module.ngfactory';
|
2016-07-12 18:14:13 -07:00
|
|
|
|
|
|
|
|
// Launch with the app module factory.
|
|
|
|
|
platformBrowser().bootstrapModuleFactory(AppModuleNgFactory);
|
|
|
|
|
// #enddocregion
|
|
|
|
|
*/
|