• Overview
@angular/router

withRouterConfig

function
stable

Allows to provide extra parameters to configure Router.

API

withRouterConfig

Allows to provide extra parameters to configure Router.

@paramoptionsRouterConfigOptions

A set of parameters to configure Router, see RouterConfigOptions for additional information.

Usage Notes

Basic example of how you can provide extra configuration options:

const appRoutes: Routes = [];
bootstrapApplication(AppComponent,
  {
    providers: [
      provideRouter(appRoutes, withRouterConfig({
         onSameUrlNavigation: 'reload'
      }))
    ]
  }
);
Jump to details