17 lines
439 B
JavaScript
Raw Normal View History

2022-02-18 16:59:56 +08:00
module.exports = {
devServer: {
proxy: {
"/qiezi/api": {
//这里最好有一个 /
target: "http://localhost:8088", // 服务器端接口地址
ws: true, //如果要代理 websockets配置这个参数
// 如果是https接口需要配置这个参数
changeOrigin: true, //是否跨域
pathRewrite: {
"^/qiezi/api": "/qiezi/api",
},
},
},
},
};