refactor(): remove ionic module from angular project temporarily

This commit is contained in:
Dan Bucholtz
2017-11-21 12:42:43 -06:00
parent 22db23fcb0
commit 833f384eb6
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ const routes: Routes = [
{ path: 'basic-inputs', loadChildren: 'app/basic-inputs-page/basic-inputs-page.module#BasicInputsPageModule' }, { path: 'basic-inputs', loadChildren: 'app/basic-inputs-page/basic-inputs-page.module#BasicInputsPageModule' },
{ path: 'group-inputs', loadChildren: 'app/group-inputs-page/group-inputs-page.module#GroupInputsPageModule' }, { path: 'group-inputs', loadChildren: 'app/group-inputs-page/group-inputs-page.module#GroupInputsPageModule' },
{ path: 'home', loadChildren: 'app/home-page/home-page.module#HomePageModule' }, { path: 'home', loadChildren: 'app/home-page/home-page.module#HomePageModule' },
{ path: 'alert', loadChildren: 'app/alert/alert.module#AlertModule' } // { path: 'alert', loadChildren: 'app/alert/alert.module#AlertModule' }
]; ];
@NgModule({ @NgModule({

View File

@ -4,14 +4,14 @@ import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
import { AppComponent } from './app.component'; import { AppComponent } from './app.component';
import { AppRoutingModule } from './app-routing.module'; import { AppRoutingModule } from './app-routing.module';
import { IonicAngularModule } from '../../../src/module'; // import { IonicAngularModule } from '../../../src/module';
@NgModule({ @NgModule({
declarations: [AppComponent], declarations: [AppComponent],
imports: [ imports: [
AppRoutingModule, AppRoutingModule,
BrowserModule, BrowserModule,
IonicAngularModule // IonicAngularModule
], ],
providers: [], providers: [],
bootstrap: [AppComponent], bootstrap: [AppComponent],