I'm wandering if it is possible to redirect path: ' ' to path: ':id' ? Is there a way I can achieve this?
Thank you.
{
  path: 'folder',
  children: [
    {
      path: '',
      redirectTo: ':id',
      pathMatch: 'full',
    },
    {
      path: ':id',
      canActivate: [AuthGuard],
      component: DocumentsComponent,
    },
  ]
}