feat: add wildcard route to redirect to StartComponent for unmatched paths
This commit is contained in:
parent
5610260120
commit
b4d3ad6ac8
@ -35,5 +35,9 @@ export const routes: Routes = [
|
|||||||
{
|
{
|
||||||
path: 'login',
|
path: 'login',
|
||||||
component: LoginComponent,
|
component: LoginComponent,
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
path: '**',
|
||||||
|
component: StartComponent,
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user