-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdemo_app_module.ts
30 lines (27 loc) · 903 Bytes
/
demo_app_module.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import {DemoApp} from './demo_app';
import {NgModule} from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import {HashLocationStrategy, LocationStrategy} from '@angular/common';
import { DemoRoutes } from 'demo_routes';
import { Demo1Module } from './demo_1/demo_module';
import { Demo2Module } from './demo_2/demo_module';
import { Demo3Module } from './demo_3/demo_module';
import { Demo4Module } from './demo_4/demo_module';
import {APP_BASE_HREF} from '@angular/common';
@NgModule({
bootstrap: [DemoApp],
declarations: [DemoApp],
imports: [
BrowserModule,
DemoRoutes,
Demo1Module,
Demo2Module,
Demo3Module,
Demo4Module
],
providers: [
{ provide: APP_BASE_HREF, useValue: '/ac_presentation' },
{ provide: LocationStrategy, useClass: HashLocationStrategy }
]
})
export class DemoAppModule { }