记录vue项目打包后报错exports is not defined

发现不同环境变量下有时候打包正常有时候报错

经排查 发现报错的打包的控制台会报如下错误,但是构建正常,没有报红

[BABEL] Note: The code generator has deoptimised the styling of /root/.jenkins/workspace/prod-funeral-affair-front-business-pc/node_modules/element-ui/lib/element-ui.common.js as it exceeds the max of 500KB

解决方法:

在项目的根目录下找到 .babelrc 文件,增加 "compact": false ,如:

{

  "compact": false,

  "presets": ["env", "react", "stage-0"],

  "plugins": [

    "transform-runtime"

  ]

}

如果不存在则手动创建该文件,并填写内容如:

{

  "compact": false

}


你可能感兴趣的:(记录vue项目打包后报错exports is not defined)