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
31
32
33
34
35
36
| import { NgModule, ErrorHandler } from '@angular/core';
| import { BrowserModule } from '@angular/platform-browser';
| import { HttpModule } from '@angular/http';
|
| import { IonicApp, IonicModule, IonicErrorHandler } from 'ionic-angular';
| import { MyApp } from './app.component';
|
| import { StatusBar } from '@ionic-native/status-bar';
| import { SplashScreen } from '@ionic-native/splash-screen';
| import { KlCoreModule } from 'kl/core';
|
| @NgModule({
| declarations: [
| MyApp
| ],
| imports: [
| BrowserModule,
| HttpModule,
| IonicModule.forRoot(MyApp, {
| backButtonText: '',
| tabsHideOnSubPages: true,
| model: 'ios'
| }),
| KlCoreModule
| ],
| bootstrap: [IonicApp],
| entryComponents: [
| MyApp
| ],
| providers: [
| StatusBar,
| SplashScreen,
| { provide: ErrorHandler, useClass: IonicErrorHandler }
| ]
| })
| export class AppModule { }
|
|