1 Star 0 Fork 0

哈学院20级 / vue脚手架项目

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 678 Bytes
一键复制 编辑 原始数据 按行查看 历史
jshand 提交于 2022-11-10 10:08 . 前端跨域
module.exports = {
lintOnSave:false, //关闭代码格式化校验工具
//开发的服务器
devServer:{
port: 80 ,//修改启动端口
proxy: {
'/api': { // 请求相对路径以/api开头的, 才会走这里的配置
changeOrigin: true, // 改变请求来源(欺骗后台你的请求是从http://c.m.163.com)
// /api/human /human
pathRewrite: {
'^/api': '' // 因为真实路径中并没有/api这段, 所以要去掉这段才能拼接正确地址转发请求
},
// http://localhost/human ---> http://127.0.0.1:8080/mvc/human
target: 'http://127.0.0.1:8080/mvc', // 后台接口域名
}
}
}
}
1
https://gitee.com/harbin-college-level-20/vue-cli.git
git@gitee.com:harbin-college-level-20/vue-cli.git
harbin-college-level-20
vue-cli
vue脚手架项目
master

搜索帮助