A UrlMatcher that does an exact match against a path stored in the special configuration fields that External Router stores on a Route's data.
export const routes: Routes = [
{
matcher: daffDataPathUrlMatcher,
data: {
daffExternalRouteType: "CATEGORY",
},
loadChildren: () => import('./category/category.module').then((m) => m.ShopCategoryModule),
}
]