1 Star 0 Fork 109

獨自→〓待/snakerflow-designer-vue

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
mldong 提交于 2023-03-04 11:45 . build:优化打包
const path = require('path')
function resolve (dir) {
return path.join(__dirname, dir)
}
module.exports = {
// 修改 src 为 examples
pages: {
index: {
entry: 'examples/main.js',
template: 'public/index.html',
filename: 'index.html'
}
},
configureWebpack: config => {
// 当打包模式为类库时,需要排除以下第三方库
if (process.env.VUE_APP_BUILD === 'lib') {
config.externals = {
vue: {
root: 'Vue',
commonjs: 'vue',
commonjs2: 'vue',
amd: 'vue'
},
'element-plus': 'element-plus',
'vue-router': 'vue-router'
}
}
},
// 强制内联CSS
css: {
extract: false
},
// 扩展 webpack 配置,使 packages 加入编译
chainWebpack: config => {
config.module
.rule('js')
.include
.add(resolve('packages'))
.end()
.use('babel')
.loader('babel-loader')
.tap(options => {
// 修改它的选项...
return options
})
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangyuan237/snakerflow-designer-vue.git
git@gitee.com:wangyuan237/snakerflow-designer-vue.git
wangyuan237
snakerflow-designer-vue
snakerflow-designer-vue
master

搜索帮助