vue.config.js 493 B

123456789101112131415161718
  1. module.exports = {
  2. devServer: {
  3. proxy: {
  4. "/super_cloud/api": {
  5. target: "https://wx.palmnest.com", // 目标地址
  6. changeOrigin: true,
  7. secure: false,
  8. // pathRewrite: {
  9. // "^/super_cloud/api": "",
  10. // },
  11. onProxyReq(proxyReq, req, res) {
  12. // 移除请求头中的origin:解决跨域请求时get请求正常但是post请求403的问题?
  13. proxyReq.removeHeader("origin");
  14. },
  15. },
  16. },
  17. },
  18. };