1 Star 0 Fork 14

宸罡/jeeagile-process-designer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
'use strict'
const path = require('path')
function resolve(dir) {
return path.join(__dirname, dir)
}
const name = 'JeeAgile Process Designer' // 标题
const port = process.env.port || process.env.npm_config_port || 80 // 端口
// vue.config.js 配置说明
module.exports = {
// 应用部署地址。
publicPath: process.env.NODE_ENV === 'production' ? '/' : '/',
// 输出目录
outputDir: 'dist',
// 静态资源目录
assetsDir: 'static',
// 是否开启eslint保存检测,有效值:true | false | 'Error'
lintOnSave: process.env.NODE_ENV === 'development',
// 如果你不需要生产环境的 source map,禁用此项可以加速生产环境构建。
productionSourceMap: false,
// webpack-dev-server 相关配置
devServer: {
host: '0.0.0.0',
port: port,
open: true,
disableHostCheck: true
},
configureWebpack: {
name: name,
resolve: {
alias: {
'@': resolve('src')
}
}
},
chainWebpack(config) {
config.module.rule('bpmnlintrc').test(/\.bpmnlintrc$/).use('bpmnlint-loader').loader('bpmnlint-loader').end()
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/esone.app/jeeagile-process-designer.git
git@gitee.com:esone.app/jeeagile-process-designer.git
esone.app
jeeagile-process-designer
jeeagile-process-designer
master

搜索帮助