Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

vue-cli3 Could not proxy request

when I run npm run start, I get

start": "vue-cli-service serve"

and then I use http request, but I get

Proxy error: Could not proxy request /crm/api/boss/admin/doLogin from localhost:8080 to https://qa6boss.qjdchina.com. See https://nodejs.org/api/errors.html#errors_common_system_errors for more information (EPROTO).

What is the reason of this behavior?

like image 967
我有一剑学自中原剑客温华 Avatar asked Oct 12 '25 01:10

我有一剑学自中原剑客温华


1 Answers

I had the same problem. I fixed it by changing the target from http://localhost:8000/ to http://127.0.0.1:8000/

like image 127
ferbarra Avatar answered Oct 14 '25 16:10

ferbarra