let routesList: Routes = [
{ path: 'x', component: xComponent },
{ path: 'y', component: yComponent },
{ path: 'zComponent', component: zComponent }
];
When entering "x" in the URL, it navigates to the component page. However, entering "X" (capital) results in an invalid URL error.
Is there a way to make the URL case insensitive for routing?