LwrRouterConfig
To configure a router module with the Router Module Provider, you have to set up both LwrRouterConfig
and LwrConfigRouteDefinition
.
The LwrRouterConfig
object, which is passed to the Router Module Provider, contains the same properties as RouterConfig
, which is passed to createRouter()
.
Property | Type | Required/Optional | Description |
---|---|---|---|
basePath | String | Optional | A path prefix applied to all URIs for the router. If no base path is provided, the default value is empty (" "). |
caseSensitive | Boolean | Optional | If true , URIs are processed case sensitively. The default value is false . |
routes | Array | Required | An array of LwrConfigRouteDefinition objects. |
i18n | Array | Optional | An i18n config that may affect the path prefix applied to all URIs. The default value is {locale: 'en-US', defaultLocale: 'en-US'} . |
See Also