28 lines
658 B
TypeScript
28 lines
658 B
TypeScript
|
import { BrowserModule } from '@angular/platform-browser';
|
||
|
import { ErrorHandler, NgModule } from '@angular/core';
|
||
|
import { IonicApp, IonicErrorHandler, IonicModule } from 'ionic-angular';
|
||
|
import { SplashScreen } from '@ionic-native/splash-screen';
|
||
|
import { StatusBar } from '@ionic-native/status-bar';
|
||
|
|
||
|
import { MyApp } from './app.component';
|
||
|
|
||
|
@NgModule({
|
||
|
declarations: [
|
||
|
MyApp
|
||
|
],
|
||
|
imports: [
|
||
|
BrowserModule,
|
||
|
IonicModule.forRoot(MyApp)
|
||
|
],
|
||
|
bootstrap: [IonicApp],
|
||
|
entryComponents: [
|
||
|
MyApp
|
||
|
],
|
||
|
providers: [
|
||
|
StatusBar,
|
||
|
SplashScreen,
|
||
|
{provide: ErrorHandler, useClass: IonicErrorHandler}
|
||
|
]
|
||
|
})
|
||
|
export class AppModule {}
|