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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记录vue项目打包后报错exports is not defined相关的知识,希望对你有一定的参考价值。

参考技术A 发现不同环境变量下有时候打包正常有时候报错

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

[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的主要内容,如果未能解决你的问题,请参考以下文章

解决vue打包后报“er; // Unhandled 'error' event”错误

vue打包后报错TypeError: Cannot read property ‘call’ of undefined解决方法 - 2021-09-18

Vue 打包后报错 Uncaught TypeError: Cannot redefine property: $router

Vue 打包后报错 Uncaught TypeError: Cannot redefine property: $router

vue打包发布后提示ReferenceError: exports is not defined

关于vue,webpack 中 “exports is not defined”报错