Provides the location strategy that uses the URL fragment instead of the history API.
API
function withHashLocation(): RouterHashLocationFeature;
Usage Notes
Basic example of how you can use the hash location option:
const appRoutes: Routes = [];
bootstrapApplication(AppComponent,
{
providers: [
provideRouter(appRoutes, withHashLocation())
]
}
);