Hey, I am using the HashRoutingStrategy, and I have an Issue, where my oauthprovider redirects to localhost:4200/oauth-callback. I need my angular app to recognize this route, and redirect to localhost:4200/#/oauth-callback. Is there any way to do this?
app.module: { provide: LocationStrategy, useClass: HashLocationStrategy },
app-routing.module:
path: 'oauth-callback',
component: OauthCallbackComponent
},```