Like Angular UI Router is it possible to have multiple routes with same URL in Angular2? e.g following two routes:
{ path: '/home', name: 'Home', component: HomeComponent} ,
{ path: '/home', name: 'Dashboard', component: DashboardComponent}
Currently, having error in the console for conflicting routes.