• Overview
@angular/router

withHashLocation

function

Provides the location strategy that uses the URL fragment instead of the history API.

withHashLocation

Provides the location strategy that uses the URL fragment instead of the history API.

Usage Notes

Basic example of how you can use the hash location option:

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