如果我正在为一个反应应用程序提供服务npm install -g serve; serve -s build
,是否也可以有一个位置代理?
例如:任何请求都https://example.com/api/*
将被重定向到https://example.com:8000/api/*
您可以在 package.json 中尝试代理
"proxy": {
"/api": {
"target": "http://localhost:3001"
},
"/assets": {
"target": "http://localhost:3001"
}
},
如果上述问题无法解决,您也可以在此处检查环境配置选项:https ://docs.npmjs.com/misc/config#proxy