18 lines
393 B
TypeScript
18 lines
393 B
TypeScript
import { Routes } from '@angular/router';
|
|
|
|
export const routes: Routes = [
|
|
{
|
|
path: '',
|
|
pathMatch: 'full',
|
|
redirectTo: 'tasks',
|
|
},
|
|
{
|
|
path: 'tasks',
|
|
loadComponent: () => import('./features/tasks/feature/tasks-page.component').then((module) => module.TasksPageComponent),
|
|
},
|
|
{
|
|
path: '**',
|
|
redirectTo: 'tasks',
|
|
},
|
|
];
|