forked from EVOgeek/Vmeda.Online
34 lines
869 B
TypeScript
34 lines
869 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 { SQLite } from '@ionic-native/sqlite';
|
|
|
|
import { MyApp } from './app.component';
|
|
import { CoreLoggerProvider } from '../providers/logger';
|
|
import { CoreDbProvider } from '../providers/db';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
MyApp
|
|
],
|
|
imports: [
|
|
BrowserModule,
|
|
IonicModule.forRoot(MyApp)
|
|
],
|
|
bootstrap: [IonicApp],
|
|
entryComponents: [
|
|
MyApp
|
|
],
|
|
providers: [
|
|
StatusBar,
|
|
SplashScreen,
|
|
SQLite,
|
|
{provide: ErrorHandler, useClass: IonicErrorHandler},
|
|
CoreLoggerProvider,
|
|
CoreDbProvider
|
|
]
|
|
})
|
|
export class AppModule {}
|