3 Star 0 Fork 0

MakeMoney/tea_bud_detection_sys_client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 824 Bytes
一键复制 编辑 原始数据 按行查看 历史
Peanut 提交于 2024-04-28 16:09 . fix 修改项目启动的端口号为10086
/*
* @Descripttion:
* @version:
* @Author: Peanut
* @Date: 2024-04-22 16:16:13
* @LastEditors: Peanut
* @LastEditTime: 2024-04-28 16:08:55
*/
const { HTTP } = require("./src/config/index");
module.exports = {
devServer: {
port:10086,
proxy: {
//配置跨域
"/api": {
target: HTTP.cross_domain, //这里填写项目真实的后台接口地址
changOrigin: true, //设置允许跨域
pathRewrite: {
//这个重写不可省略!因为我们真正请求的地址并不含 /api
"^/api": "",
/* 当我们在浏览器中看到请求的地址为:http://localhost:8080/api/data/getdata 时
因为重写了 /api ,所以实际上访问的地址是:http://x.x.x.x:x/data/getdata,
*/
},
},
},
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/make-money_3/tea_bud_detection_sys_client.git
[email protected]:make-money_3/tea_bud_detection_sys_client.git
make-money_3
tea_bud_detection_sys_client
tea_bud_detection_sys_client
master

搜索帮助