I have the following routes:
static routes = [
{
path: '',
redirectTo: 'home',
},
{
path: 'home',
component: Home,
},
]
The redirect to the home path works (Home component is rendered), but shouldn’t the URL be updated to /home
?
Thanks for any help.