0👍
You cannot do axios.post("/parser/upload"...
as this will post to the frontend, you need to tell axios to post to the backend by doing
axios.post("https://localhost:3000/parser/upload"...
Source:stackexchange.com
0👍
You cannot do axios.post("/parser/upload"...
as this will post to the frontend, you need to tell axios to post to the backend by doing
axios.post("https://localhost:3000/parser/upload"...