npm打包报错TypeError: Class extends value undefined is not a constructor or null

解决办法:

升级webpack版本

我用的第二种!我看别人用的第一种。但是我用第一种还是没有解决、然后我用第二种方法就可以了!

第一种是安装这个插件:

npm install --save-dev mini-css-extract-plugin //在项目开发依赖中安装

第二种是升级webpack版本(如果无效可以先卸载,再安装):

npm install webpack -g // 全局安装
npm install webpack --save-dev //在项目开发依赖中安装



 

资料:

报错TypeError: Class extends value undefined is not a constructor or null - 简书在执行npm run build的时候遇到了错误:TypeError: Class extends value undefined is not a constructor ...https://www.jianshu.com/p/85674df7490e

猜你喜欢

转载自blog.csdn.net/qq_22182989/article/details/122981857