Skip to content

Commit

Permalink
perf(file-manager): lazy loading ManagerModule
Browse files Browse the repository at this point in the history
  • Loading branch information
ElonH committed Jun 14, 2020
1 parent b0d21d7 commit 861bb57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/pages/pages-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ const routes: Routes = [
},
{
path: 'manager',
// loadChildren: () => import('./manager/manager.module').then(m => m.ManagerModule),
loadChildren: () => ManagerModule,
loadChildren: () => import('./manager/manager.module').then(m => m.ManagerModule),
// loadChildren: () => ManagerModule,
},
{
path: 'jobs',
Expand Down

0 comments on commit 861bb57

Please sign in to comment.