标签:报错 fine 导致 问题 run str code pack typeerror
进入到VUE项目运行命令:npm run dev的时候报错。错误提示:TypeError: Cannot destructure property `compile` of ‘undefined‘ or ‘null‘
经过分析,发现是因为webpack-dev-server版本过高导致。
进入到项目中,运行如下命令:
npm install -D webpack-dev-server@3.0.0
然后再运行npm run dev即可。
TypeError: Cannot destructure property `compile` of 'undefined' or 'null'
标签:报错 fine 导致 问题 run str code pack typeerror
原文地址:https://www.cnblogs.com/sweeneys/p/10163370.html