This is my current routes config of latest version Angular app
const routes = [
{ path: 'board', component: BoardComponent, canActivate: [AuthGuard], children: [
{ path: 'stories', component: StoryComponent }]},
{ path: '**', redirectTo: 'board', pathMatch: 'full' }
];
It works fine, both components are displayed, I want to work it the same way but with a little change: when user routes to /board/stories
, I want the path to be just /stories
, is it possible to do so?