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.
```ts
 export const routes: Routes = [
   {
     matcher: daffDataPathUrlMatcher,
     data: {
       daffExternalRouteType: "CATEGORY",
     },
     loadChildren: () => import('./category/category.module').then((m) => m.ShopCategoryModule),
   }
]
```
daffInsertDataPathStrategy
DaffRouteWithDataPath