1 Star 0 Fork 0

TownCoder/yitiao-admin-ui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
TownCoder 提交于 2022-11-09 17:05 . feat(chat): 聊天室全新升级
// 跨域配置
module.exports = {
// publicPath: './',
lintOnSave: false,//关闭语法检查
// 基本路径(下面是重点)
publicPath: '/',
// 输出文件目录
devServer: { //记住,别写错了devServer//设置本地默认端口 选填
port: 9876,
proxy: { //设置代理,必须填
'/api': { //设置拦截器 拦截器格式 斜杠+拦截器名字,名字可以自己定
target: 'http://localhost:8014', //代理的目标地址
// target: 'http://101.43.146.76:8014',
changeOrigin: true, //是否设置同源,输入是的
pathRewrite: { //路径重写
'/api': '' //选择忽略拦截器里面的单词
}
}
}
}
}
// nginx 配置
/**
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
server {
listen 8081;
server_name 192.168.10.8;
location / {
root E:/code/web/dist;
index index.html;
try_files $uri $uri/ /index.html;
}
location /api/ {
proxy_pass http://localhost:8014/; #必须斜杠/结尾
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
*/
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/yitiaocoding/yitiao-admin-ui.git
git@gitee.com:yitiaocoding/yitiao-admin-ui.git
yitiaocoding
yitiao-admin-ui
yitiao-admin-ui
main

搜索帮助