加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config - 副本.js 887 Bytes
一键复制 编辑 原始数据 按行查看 历史
竹苓 提交于 2022-03-12 17:12 . 外卖项目
const path = require('path')
const apiMocker = require('webpack-api-mocker')
module.exports = {
pages: {
index: {
//入口
entry: "src/main.js",
},
},
lintOnSave: false, //关闭语法检查
devServer:{
before(app){
apiMocker(app,path.resolve('./mocker/index.js'),{
proxy:{
'/repos/*':'https://api.github.com/',
},
changeHost:true,
})
}
}
};
// '/api1':{//匹配所有以'api1'开头的请求路径
// target:'http://localhost:5000',//代理目标的基础路径
// changeOrigin:true,
// pathRewrite:{'^/api1':''}
// },
// '/api2':{//匹配所有以'api2'开头的请求路径
// target:'http://localhost:5001',//代理目标的基础路径
// changeOrigin:true,
// pathRewrite:{'^/api2':''}
// },
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化