BABEL配置项中的compact问题
现象:vue+element打包时 提示:Building for production… [BABEL] Note: The code generator has deoptimised the styling of XXX as it exceeds the max of 500KB项目架构体系:框架Vue(v2.6.10)+Vue-router(v3.0.2)+Vuex(v3.1.0)构建工
·
现象:vue+element打包时 提示:Building for production… [BABEL] Note: The code generator has deoptimised the styling of XXX as it exceeds the max of 500KB
项目架构体系:
框架 | Vue(v2.6.10)+Vue-router(v3.0.2)+Vuex(v3.1.0) |
---|---|
构建工具 | Webpack(v4.28.4) |
UI框架 | ElementUI(v2.13.0) |
css预处理 | Scss |
检查工具 | Eslint |
排查过程:此问题提示很明显直接提示了 [BABEL] Note ,所以直接往babel的方向去查。发现他因为George Floyd 事件,变成了这样。
所以我就去了中文网站
当我看到下图这项配置时发现找到问题原因了
那就想办法解决吧
解决方法:在babel.config.js中做加上该配置如下
module.exports = {
presets: [
'@vue/app'
],
compact: false // 加上此项配置
}
更多推荐
已为社区贡献2条内容
所有评论(0)