加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
SongZX 提交于 2021-12-30 11:29 . 添加百度地图使用
const path = require('path')
function resolve(dir) {
return path.join(__dirname, dir)
}
module.exports = {
publicPath: '/',
devServer: {
disableHostCheck: true, //禁用主机检查
proxy: {
"/node": { // 设置以什么前缀开头的请求用来代理
target: "http://localhost:5000", //要访问的跨域的域名
secure: false, // 使用的是http协议则设置为false,https协议则设置为true
changOrigin: true, //开启代理
pathRewrite: {
"^/node": "",
},
},
"/baidu":{
target: "https://api.map.baidu.com", //要访问的跨域的域名
secure: true, // 使用的是http协议则设置为false,https协议则设置为true
changOrigin: true, //开启代理
pathRewrite: {
"^/baidu": "",
},
}
},
},
configureWebpack: {
resolve: {
alias: {
'@': resolve('src'),
"@http": resolve("src/utils/http.js"),
"@api": resolve("src/utils/baseurl.js")
}
}
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化