The options passed into a navigation request.

interface INavOptions {
    hard?: boolean;
    skipRouting?: boolean;
}

Properties

Properties

hard?: boolean

Whether the navigation should be hard URL change instead of an HTML history API change.

skipRouting?: boolean

Should the routing stage be skipped when navigating? This will simply rewrite the URL and push the new state to the history API, no routing commands will be triggered.