23 lines
832 B
TypeScript
Raw Normal View History

2016-03-26 12:18:13 -04:00
// #docregion
import { bootstrap } from '@angular/platform-browser-dynamic';
import { XHRBackend } from '@angular/http';
import { appRouterProviders } from './app.routes';
2016-03-26 12:18:13 -04:00
import { LocationStrategy,
2016-04-27 11:28:22 -07:00
HashLocationStrategy } from '@angular/common';
2016-03-26 12:18:13 -04:00
import { HeroData } from './hero-data';
import { InMemoryBackendService,
SEED_DATA } from 'angular2-in-memory-web-api';
2016-03-26 12:18:13 -04:00
import { AppComponent } from './app.component';
// #docregion bootstrap
bootstrap(AppComponent, [
appRouterProviders,
{ provide: LocationStrategy, useClass: HashLocationStrategy },
2016-03-26 12:18:13 -04:00
{ provide: XHRBackend, useClass: InMemoryBackendService }, // in-mem server
{ provide: SEED_DATA, useClass: HeroData } // in-mem server data
2016-03-26 12:18:13 -04:00
]).catch((err: any) => console.error(err));
// #enddocregion bootstrap