Im having a problem with the urls on my build I have an angular and nest project, serving locally, works fine. I can fetch data from the server without problems. But when I run the angular build, the API url is wrong (http://localhost/api/todos) my API in this case is in localhost:3333. I tried to replace the proxy with this in the angular.json
{
"replace": "apps/front/proxy.conf.json",
with": "apps/front/proxy-prod.conf.json"
}
I need to have the url to the api endpoint on the server (http://myServer/API), maybe Im missing something in the configuration