收到代理错误
代理服务器错误:无法将请求/API/auth/signin从本地主机51171代理到http://localhost:3000/
我注意到,在启动服务器是运行在两个不同的端口...
info: Microsoft.AspNetCore.SpaServices[0]
Starting create-react-app server on port 51171...
info: Microsoft.Hosting.Lifetime[14]
Now listening on: http://localhost:5000
info: Microsoft.Hosting.Lifetime[0]
Application started. Press Ctrl+C to shut down.
info: Microsoft.Hosting.Lifetime[0]
Hosting environment: Development
在package.json
中,我将代理定义如下:
"proxy": "http://localhost:3000"
1条答案
按热度按时间5sxhfpxr1#
已将代理更改为:
"proxy": "http://localhost:5000"
,现在它的工作...仍然不知道为什么smth是运行在51171上