我在poi.dev.config.js中有我的代理设置,但是当我运行yarn / npm run时,构建无法正常工作吗?
module.exports = {
devServer: {
proxy: {
'/api/**': {
target: 'http://localhost:8000',
secure: false,
},
'/apin/**': {
target: 'http://somedoamin.com',
secure: false,
changeOrigin: true,
pathRewrite: {
'^/apin': '/API',
},
},
},
},
};
我尝试使用.env.production直接传递url。如果我直接传递url,则我的要求为OPTIONS而不是post。我只需要使用代理即可。