Not sure how to ask the question correctly, but here goes:
Environment: ASP.NET Server, Angular 8 and not a SPA. Each ASP view reloads angular.
app.module.ts:
providers: [
{ provide: APP_BASE_HREF, useValue: '/Scripts/ng' },
I can go to an address like https://localhost:5999/location which is configured in the routes, but when I get there the browsers address bar has https://localhost:5999/Scripts/ng/location in it.
How do I get it back to the relative path of Angular?
thanks