vue.config.js
module.exports = {
devServer: {
proxy: {
"/api": {
target: "http://192.168.0.103:9876",
changOrigin: true,
pathRewrite: {"^/api" : ""}
}
}
}
}
原文:https://www.cnblogs.com/jxd283465/p/11615163.html