• Overview
@angular/router

withHashLocation

function
stable

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

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