A complete log of this run can be found in
原因:npm的版本不符合
解决方法:1.全局更新 npm install npm -g 2.用淘宝镜像命令 cnpm install npm -g
y@1.0.0 dev: webpack - dev- server -- inline --progress -- config build/ webpack . dev. conf.js
原因:node_modules有意外改动,导致依赖库不完整
解决方法:删除项目下的node_modules,在你的项目目录下。
重新执行npm install,这会重新生成node_modules,
执行npm run build ,执行npm run dev.
网友评论