I believe it should be
{ path: '**', component: NotFoundComponent }
Here is the doc
By the way
There is a way if you want to set root for the default route.
Set pathMatch = 'full' and set the value of redirectTo
[
{
path: '',
pathMatch: 'full',
redirectTo: 'teams'
},
{
path: 'teams',
component: TeamsComponent
}
]
Here is a post saying this
source
share