I made a proxy for my requests on my angular app, and I got my GET request to properly redirect to
but my POST request still goes to
This is my proxy code
{
"/api": {
"target": "http://localhost:3000",
"secure": false,
"logLevel": "debug"
}
}
Why does one fail when they're making requests to the same route?