I'm calling my backend (multiple microservices) inside my Angluar SPA and I'm getting this error:
As you see, there is a response (so the request aimed to the right path ect.) but the browser seems to block it.
My interpretation of this is the following:
The frontend would require the reponse to have a Access-Control-Allow-Origin header set. Because this header is not set, the response is blocked by the browser. So I need to adjust the CORS config of my backend to set this header.
Am I right?
I mentioned that the backend consists of multiple microservices to avoid answers that suggest a proxy config on angular side. As I understood it, this won't be possible for dynamic addresses of the microservices.
