1 Star 1 Fork 0

fanqiboy/记单词web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.85 KB
一键复制 编辑 原始数据 按行查看 历史
fanqiboy 提交于 2022-10-03 16:21 . 添加登录,个人信息功能
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
devServer: {
port: 8082,
client: {
webSocketURL: 'ws://localhost:8082/ws',
},
// headers: {
// 'Access-Control-Allow-Origin': '*',
// },
proxy: {
'/word': {//请求前缀,有这个前缀(紧跟端口号)的才会走代理
target: 'http://localhost:8081',
// pathRewrite:{"^/word":""}, //pathRewrite的key写一个正则的匹配条件,匹配以test开头的路径,把test替换为空字符串
ws: true,//用于支持websocket
changeOrigin: true//是否对告诉真实服务器真实的源,false不改变源(真实的源) true(改变源)-----用于控制请求头中的host值
},
'/close': {
target: 'http://localhost:8081',
ws: true,
changeOrigin: true
},
'/subject': {
target: 'http://localhost:8081',
ws: true,
changeOrigin: true
},
'/question': {
target: 'http://localhost:8081',
ws: true,
changeOrigin: true
},
'/exam': {
target: 'http://localhost:8081',
ws: true,
changeOrigin: true
},
'/login': {
target: 'http://localhost:8081',
// target: 'https://v.api.aa1.cn/api/yiyan/index.php',
pathRewrite:{"^/test":""},//pathRewrite的key写一个正则的匹配条件,匹配以test开头的路径,把test替换为空字符串
ws: true,
changeOrigin: true
},
'/test': {
target: 'http://localhost:8081/exam/add',
// target: 'https://v.api.aa1.cn/api/yiyan/index.php',
pathRewrite:{"^/test":""},//pathRewrite的key写一个正则的匹配条件,匹配以test开头的路径,把test替换为空字符串
ws: true,
changeOrigin: true
}
}
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/fanqiboy/memorize-words-web.git
[email protected]:fanqiboy/memorize-words-web.git
fanqiboy
memorize-words-web
记单词web
master

搜索帮助