vue.config.js
module.exports = {
outputDir: "dist",
assetsDir: "static",
publicPath: "./",
devServer: {
proxy: {
"/api": {
//這里最好有一個(gè) /
target: "http://192.168.0.20:8080", // 后臺接口域名
ws: true, //如果要代理 websockets轧抗,配置這個(gè)參數(shù)
secure: false, // 如果是https接口绝葡,需要配置這個(gè)參數(shù)
changeOrigin: true, //是否跨域
pathRewrite: {
"^/api": "",
},
},
},
},
};