diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 152cae5..b595d39 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -1,6 +1,7 @@ import { NgModule } from '@angular/core'; import { IonicApp, IonicModule } from 'ionic-angular'; import { MyApp } from './app.component'; +import { HttpModule } from '@angular/http'; import { HomePage } from '../pages/home/home'; @NgModule({ @@ -9,6 +10,7 @@ import { HomePage } from '../pages/home/home'; HomePage ], imports: [ + HttpModule, IonicModule.forRoot(MyApp) ], bootstrap: [IonicApp],