vue.config.js
module.exports = {
outputDir: "dist",
assetsDir: "static",
publicPath: "./",
devServer: {
proxy: {
"/api": {
//这里最好有一个 /
target: "http://192.168.0.20:8080", // 后台接口域名
ws: true, //如果要代理 websockets,配置这个参数
secure: false, // 如果是https接口,需要配置这个参数
changeOrigin: true, //是否跨域
pathRewrite: {
"^/api": "",
},
},
},
},
};
网友评论