2016-04-10 09:14:24 -04:00
|
|
|
// #docregion
|
2016-04-27 14:28:22 -04:00
|
|
|
import { bootstrap } from '@angular/platform-browser-dynamic';
|
2016-04-10 09:14:24 -04:00
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
|
|
|
|
// While Angular supplies a Title service for setting the HTML document title
|
|
|
|
// it doesn't include this service as part of the default Browser platform providers.
|
|
|
|
// As such, if we want to inject it into the components within our application,
|
|
|
|
// we have to explicitly provide the Angular service in our top component.
|
|
|
|
// #docregion bootstrap-title
|
2016-04-27 14:28:22 -04:00
|
|
|
import { Title } from '@angular/platform-browser';
|
2016-04-10 09:14:24 -04:00
|
|
|
|
|
|
|
bootstrap(AppComponent, [ Title ])
|
|
|
|
// #enddocregion bootstrap-title
|
|
|
|
.then(
|
|
|
|
() => window.console.info( 'Angular finished bootstrapping your application!' ),
|
|
|
|
(error) => {
|
|
|
|
console.warn( 'Angular was not able to bootstrap your application.' );
|
|
|
|
console.error( error );
|
|
|
|
}
|
|
|
|
);
|