vueCli 4.x 升级 5.x 报错 - Progress Plugin Invalid Options的解决方法
·
vueCli 4.x 升级 5.x 后运行编译命令可能会有以下报错:
ERROR ValidationError: Progress Plugin Invalid Options
options should NOT have additional properties
options should NOT have additional properties
options should NOT have additional properties
options should pass "instanceof" keyword validation
options should match exactly one schema in oneOf
这个有可能是本地安装的webpack版本跟vue-cli版本不一致导致的
解决方法:
1、检查node_modules里的webpack版本是否也升级到5.x版本,没有就要升级到5.x版本
2、检查vue.config.js里面的devServer是否有overlay配置,这个配置在vue-cli 5.x版本里会不兼容,要去掉,否则运行也会报错
3、删错掉node_modules 和 package-lock.json
4、清除npm缓存:npm cache clean --force
5、重新安装依赖:npm install
更多推荐
已为社区贡献5条内容
所有评论(0)