From 55aa6848f2070f00f4473a23367ffc85ae0af49e Mon Sep 17 00:00:00 2001 From: Sergey Andrievskiy Date: Thu, 20 Jun 2019 13:35:07 +0300 Subject: [PATCH] refactor: enable dashboard redirect --- src/app/pages/pages-routing.module.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/pages/pages-routing.module.ts b/src/app/pages/pages-routing.module.ts index 9d83edfa..66e9e373 100644 --- a/src/app/pages/pages-routing.module.ts +++ b/src/app/pages/pages-routing.module.ts @@ -68,11 +68,11 @@ const routes: Routes = [{ // loadChildren: () => import('./miscellaneous/miscellaneous.module') // .then(m => m.MiscellaneousModule), // }, - // { - // path: '', - // redirectTo: 'dashboard', - // pathMatch: 'full', - // }, + { + path: '', + redirectTo: 'dashboard', + pathMatch: 'full', + }, { path: '**', component: NotFoundComponent,