Added explicit home route

This commit is contained in:
Joseph Milazzo 2020-12-24 10:51:07 -06:00
parent 01e9a1025d
commit 0714ee2e93

View file

@ -11,6 +11,7 @@ const routes: Routes = [
loadChildren: () => import('./admin/admin.module').then(m => m.AdminModule) loadChildren: () => import('./admin/admin.module').then(m => m.AdminModule)
}, },
{path: 'library', component: LibraryComponent}, {path: 'library', component: LibraryComponent},
{path: 'home', component: HomeComponent},
{path: '**', component: HomeComponent, pathMatch: 'full'} {path: '**', component: HomeComponent, pathMatch: 'full'}
]; ];