我正在使用webpack 4,需要删除标题中的HOST和ORIGIN。我尝试使用代理服务器,但这对我没有效果。只要标头中没有 Host 和 Origin ,我的服务器就会响应
我的Api网址-https://sitename.com/api/entry?name=aa
devServer: {
hot: true,
proxy: {
'/api/entry': {
target: 'http://localhost:3000',
secure: false,
changeOrigin: true,
}
},
}