I am using react redux webapp template.
Another web application is doing a server side redirect to my JavaScriptServices webapp with some query parameters. I don't want these parameter to show up on the client side. I was thinking of disabling server side prerendering so that I could process the passed in parameters and rewrite the URL.
Whats the best way to achieve this?
Thanks
Remove this from Index.cshtml
asp-prerender-module="ClientApp/dist/main-server"
In addition to asp-prerender-module, I also removed following from _ViewImports.cshtml
@addTagHelper "*, Microsoft.AspNetCore.SpaServices"
Most helpful comment
In addition to asp-prerender-module, I also removed following from _ViewImports.cshtml
@addTagHelper "*, Microsoft.AspNetCore.SpaServices"