fix production compile errors for settings page #31
This commit is contained in:
parent
1d927ce58f
commit
3f57ebe195
2 changed files with 1 additions and 18 deletions
|
@ -1,16 +0,0 @@
|
||||||
import { NgModule } from '@angular/core';
|
|
||||||
import { IonicPageModule } from 'ionic-angular';
|
|
||||||
import { SettingsPage } from './settings';
|
|
||||||
|
|
||||||
@NgModule({
|
|
||||||
declarations: [
|
|
||||||
SettingsPage,
|
|
||||||
],
|
|
||||||
imports: [
|
|
||||||
IonicPageModule.forChild(SettingsPage),
|
|
||||||
],
|
|
||||||
exports: [
|
|
||||||
SettingsPage
|
|
||||||
]
|
|
||||||
})
|
|
||||||
export class SettingsPageModule {}
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Component } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
import { IonicPage, NavController, NavParams } from 'ionic-angular';
|
import { NavController, NavParams } from 'ionic-angular';
|
||||||
import { Storage } from '@ionic/storage';
|
import { Storage } from '@ionic/storage';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -8,7 +8,6 @@ import { Storage } from '@ionic/storage';
|
||||||
* See http://ionicframework.com/docs/components/#navigation for more info
|
* See http://ionicframework.com/docs/components/#navigation for more info
|
||||||
* on Ionic pages and navigation.
|
* on Ionic pages and navigation.
|
||||||
*/
|
*/
|
||||||
@IonicPage()
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'page-settings',
|
selector: 'page-settings',
|
||||||
templateUrl: 'settings.html',
|
templateUrl: 'settings.html',
|
||||||
|
|
Reference in a new issue