4 Star 0 Fork 0

高小弟/xd-vue-package

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
devServer.js 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
shiyongGao 提交于 2022-03-16 17:12 . 跑马灯抽奖功能
'use strict';
const proxy = {
'/api/admin': {
target: 'https://sandbox-c.jufubao.cn',
pathRewrite: {"^/api/admin": "/api/admin"},
changeOrigin: true,
secure: false,
},
'/oauth': {
target: 'https://sandbox-c.jufubao.cn',
pathRewrite: {"^/oauth": "/oauth"},
changeOrigin: true,
secure: false,
}
};
const defaultSettings = require('./settings');
// If your port is set to 80,
// use administrator privileges to execute the command line.
// For example, Mac: sudo npm run
// You can change the port by the following method:
// port = 9527 npm run dev OR npm run dev --port = 9527
const port = process.env.port || process.env.npm_config_port || defaultSettings.port || 9527; // dev port
const devServer = {
port: defaultSettings.port,
open: true,
//host:'192.168.0.4',
disableHostCheck: true, // 新增该配置项
overlay: {
warnings: true,
errors: true
},
//proxy, //proxy与before不能共用,before优先于proxy
//before: ()=> {}
};
module.exports = devServer;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/e56buy/xd-vue-package.git
git@gitee.com:e56buy/xd-vue-package.git
e56buy
xd-vue-package
xd-vue-package
master

搜索帮助