05‐redirectTo - zhamri/stiwk2124-Angular-Route GitHub Wiki
app.routes.ts
export const routes: Routes = [
{
path: '',
redirectTo: 'home',
pathMatch: 'full',
},
{
path: 'home',
component: Home,
},
];
export const routes: Routes = [
{
path: '',
redirectTo: 'home',
pathMatch: 'full',
},
{
path: 'home',
component: Home,
},
];