5 Star 0 Fork 0

zopeplone/sztu-chatbot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 658 Bytes
一键复制 编辑 原始数据 按行查看 历史
zopeplone 提交于 2024-09-19 16:46 . modified: src/api/login.js
const { defineConfig } = require('@vue/cli-service')
const url ='10.108.7.180:8080'
module.exports = defineConfig({
transpileDependencies: true,
devServer: {
// 配置跨域
proxy: {
'/api': {
target: 'http://'+url,
ws: false,
changOrigin: true, // 允许跨域
pathRewrite: {
'^/api': ''
}
},
'/socket': {
target: 'ws://'+url,//后端目标接口地址
changeOrigin: true,//是否允许跨域
pathRewrite: {
'^/socket': '',//重写,
},
ws: true //开启ws, 如果是http代理此处可以不用设置
}
},
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zoepelone/sztu-chatbot.git
[email protected]:zoepelone/sztu-chatbot.git
zoepelone
sztu-chatbot
sztu-chatbot
master

搜索帮助