diff --git a/aio/content/examples/lazy-loading/src/app/app-routing.module.ts b/aio/content/examples/lazy-loading/src/app/app-routing.module.ts index 5f1de5c72c..dc2f71be29 100644 --- a/aio/content/examples/lazy-loading/src/app/app-routing.module.ts +++ b/aio/content/examples/lazy-loading/src/app/app-routing.module.ts @@ -8,11 +8,11 @@ import { Routes, RouterModule } from '@angular/router'; const routes: Routes = [ { path: 'customers', - loadChildren: './app/customers/customers.module#CustomersModule' + loadChildren: 'app/customers/customers.module#CustomersModule' }, { path: 'orders', - loadChildren: './app/orders/orders.module#OrdersModule' + loadChildren: 'app/orders/orders.module#OrdersModule' }, { path: '',