reactjs 运行在不同端口上的ASP.NET Core 6服务器

a7qyws3x  于 2022-12-12  发布在  React
关注(0)|答案(1)|浏览(155)

收到代理错误
代理服务器错误:无法将请求/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"
5sxhfpxr

5sxhfpxr1#

已将代理更改为:"proxy": "http://localhost:5000",现在它的工作...仍然不知道为什么smth是运行在51171上

相关问题