问题
VUE前端打包报错:TypeError: Class extends value undefined is not a constructor or null
在执行npm run build
的时候遇到了错误:TypeError: Class extends value undefined is not a constructor or null;而执行npm run serve
是可以正常执行的,报错如下:
uilding for production... ERROR TypeError: Class extends value undefined is not a constructor or null
TypeError: Class extends value undefined is not a constructor or null
at Object.<anonymous> (D:\JavaWorkSpace\jeecg\jeecg-boot\ant-design-vue-jeecg\node_modules\mini-css-extract-plugin\dist\CssDependency.js:12:46)
at Module._compile (internal/modules/cjs/loader.js:1063:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
at Module.load (internal/modules/cjs/loader.js:928:32)
at Function.Module._load (internal/modules/cjs/loader.js:769:14)
at require (internal/modules/cjs/helpers.js:88:18)
at Object.<anonymous> (D:\JavaWorkSpace\jeecg\jeecg-boot\ant-design-vue-jeecg\node_modules\mini-css-extract-plugin\dist\index.js:12:45)
at Module._compile (internal/modules/cjs/loader.js:1063:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
at Module.load (internal/modules/cjs/loader.js:928:32)
at Function.Module._load (internal/modules/cjs/loader.js:769:14)
at Module.require (internal/modules/cjs/loader.js:952:19)
at Object.<anonymous> (D:\JavaWorkSpace\jeecg\jeecg-boot\ant-design-vue-jeecg\node_modules\mini-css-extract-plugin\dist\cjs.js:3:18)
at Module._compile (internal/modules/cjs/loader.js:1063:30)
解决方法
根据报错可能是mini-css-extract-plugin这个插件有问题
第一种方式:是安装这个插件
npm install --save-dev mini-css-extract-plugin //在项目开发依赖中安装
第二种方式:是升级webpack版本(如果无效可以先卸载,再安装):
npm install webpack -g // 全局安装
npm install webpack --save-dev //在项目开发依赖中安装
本人是第一种方法解决了!记录一下解决的方法,防止下次还需要谷歌。