I have deployed Angular 7 app to Azure Storage Static Website.
Angular app makes calls to .NET Core API which is deployed to Azure App Service.
Is it possible to configure URL rewrite (reverse proxy) to route Angular app requests to .NET Core API without having to enable CORS? Similar way like using Angular proxy configuration for local development?
I have read that it is possible to use URL rewrite rules in Azure CDN, but I am not quite sure how to do it. https://learn.microsoft.com/en-us/azure/cdn/cdn-rules-engine-reference-features#url-rewrite
As far as I understand it is possible to specify only relative path in URL rewrite rule.
Any help is appreciated.