страница по умолчанию main

This commit is contained in:
Булат Хайруллин 2024-06-26 22:05:09 +03:00
parent c3c18d772a
commit effe95e0d1
3 changed files with 6 additions and 2 deletions

View file

@ -60,6 +60,10 @@ const appRoutes: Routes = [
component: TaskListComponent,
}
]
},
{
path: 'main',
loadChildren: 'generated-sources/page-main.module#PagemainModule',
}
];

View file

@ -14,7 +14,7 @@ import {TaskNotFoundComponent} from "./../app/component/task-not-found.component
const webbpmRoutes: Routes = [
{
path: '',
component: HomeComponent,
loadChildren: 'generated-sources/page-main.module#PagemainModule',
canActivate: [AuthenticationGuard, ConfirmExitGuard],
pathMatch: 'full',
},