I separated my frontend from my backend and I am configuring my frontend part. I am doing API requests to the backend with a proxy middleware in production now and my question is, can it harm my frontend app in anyway? is there anything why I shouldn't use a middleware proxy for this?
for me, a middleware proxy is a smooth solution to communicate with the backend and everything works out of the box.
the other option would be to setup a bunch of CORS exceptions but I am not happy with that.