docs: fix broken lazy loading examples with Angular CLI RC upgrade (#25892)

PR Close #25892
This commit is contained in:
Brandon Roberts
2018-10-06 15:02:14 -05:00
committed by Jason Aden
parent f922808b8d
commit 67ad9468d3
5 changed files with 9 additions and 9 deletions

View File

@ -3,8 +3,8 @@ import { Routes, RouterModule } from '@angular/router';
export const routes: Routes = [
{ path: '', redirectTo: 'contact', pathMatch: 'full'},
{ path: 'items', loadChildren: 'app/items/items.module#ItemsModule' },
{ path: 'customers', loadChildren: 'app/customers/customers.module#CustomersModule' }
{ path: 'items', loadChildren: './items/items.module#ItemsModule' },
{ path: 'customers', loadChildren: './customers/customers.module#CustomersModule' }
];
@NgModule({