加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 553 Bytes
一键复制 编辑 原始数据 按行查看 历史
GZ 提交于 2020-05-14 15:40 . auto deploy
module.exports = {
publicPath: process.env.NODE_ENV === 'production' ? './' : '/',
lintOnSave: false, //eslint
devServer: {
open: false, //自动弹出浏览器页面
host: 'localhost',
port: '8080',
https: false, //使用https协议
hotOnly: true, //热更新
compress: true,
proxy: {
'/api': {
target: 'https://lab.isaaclin.cn',
secure: false
// changeOrigin: true,
// pathRewrite: {
// '^/api': 'https://lab.isaaclin.cn/nCoV/api',
// },
},
},
},
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化