You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi everyone! I'm trying to skip a route location with the parameter skipRouteLocalization inside data object in a specific route, but I'm not getting any result.
Hi everyone! I'm trying to skip a route location with the parameter skipRouteLocalization inside data object in a specific route, but I'm not getting any result.
This is my routes object definition:
export const routes: Routes = [
{ path: '', redirectTo: 'home', pathMatch: 'full' },
{ path: 'home', loadChildren: () => import('./home/home.module').then(m => m.HomeModule) },
{
path: 'feature',
loadChildren: () => import('./feature/feature.module').then(m => m.FeatureModule),
data: { skipRouteLocalization: true }
}
];
May somebody help me about it?
Thanks in advance.
The text was updated successfully, but these errors were encountered: