I have deploy a SPA with frontend and backend separate.
In dev mode, I am using devServer proxy.
On prod, if we use nginx, it can be done something like this
location /api/* {
proxy_pass http://YOUR_API_ENDPOINT;
}
but how to do proxy network calls to backend in render?
(a side question: what if use render private service how will it work with above question)