当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
4 Star 10 Fork 3

万孝国 / 校友捐赠管理系统
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 884 Bytes
一键复制 编辑 原始数据 按行查看 历史
万孝国 提交于 2020-09-17 14:41 . 修改端口为80
module.exports = {
// 修改或新增html-webpack-plugin的值,在index.html里面能读取htmlWebpackPlugin.options.title
chainWebpack: config => {
config.plugin('html')
.tap(args => {
args[0].title = '校友捐赠管理系统'
return args
})
},
/* webpack-dev-server 相关配置 */
devServer: {
/* 自动打开浏览器 */
open: true,
/* 设置为0.0.0.0则所有的地址均能访问 */
host: 'localhost',
// 设置端口号
port: 80,
https: false,
hotOnly: false,
/* 使用代理 */
proxy: {
'/api': {
ws: false, // proxy websockets
/* 目标代理服务器地址 */
target: 'http://localhost:8081',
/* 允许跨域 */
changeOrigin: true,
pathRewrite: {
'^/api': ''
} // 真正访问的时候去掉/api
}
}
}
}
JavaScript
1
https://gitee.com/wanxiaoguo/adms.git
git@gitee.com:wanxiaoguo/adms.git
wanxiaoguo
adms
校友捐赠管理系统
master

搜索帮助