加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
biliii 提交于 2021-03-16 14:01 . all
const webpack=require('webpack')
module.exports = {
configureWebpack: {
plugins: [
new webpack.ProvidePlugin({
$:"jquery",
jQuery:"jquery",
"windows.jQuery":"jquery"
})
]
},
devServer: {
proxy: {
'/static': {
target: 'https://api.bilibili.com',//后台接口
ws: false, //如果要代理websockets
secure: true, // 使用的是http协议则设置为false,https协议则设置为true
changeOrigin: true, //将选项changeOrigin设置true为基于名称的虚拟托管站点。
pathRewrite: { //重写路径 比如'/api/aaa/ccc'重写为'/aaa/ccc'
'^/static': ''
}
},
'/passport': {
target: 'https://passport.bilibili.com',//后台接口
ws: false, //如果要代理websockets
secure: true, // 使用的是http协议则设置为false,https协议则设置为true
changeOrigin: true, //将选项changeOrigin设置true为基于名称的虚拟托管站点。
pathRewrite: { //重写路径 比如'/api/aaa/ccc'重写为'/aaa/ccc'
'^/passport': ''
}
},
'/search':{
target:'https://s.search.bilibili.com',
changeOrigin:true,
secure:true,
pathRewrite: { //重写路径 比如'/api/aaa/ccc'重写为'/aaa/ccc'
'^/search': ''
}
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化