0


ValidationError: Progress Plugin Invalid Options

ValidationError: Progress Plugin Invalid Options

前面一篇文章说明了我当时解决测试组件命令时遇到问题的方案,其中最核心的一部分起始是降低了

less-loader

的版本,但是当我开发完成组件(当然,开发小组件期间的测试组件代码仍很舒服)

然而,最后想要使用命令

npm run serve

打开整个项目的开发服务器的时候,又出现问题了:

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

尝试了半天,都没有效果,要么就是单个项目测试命令

npm run test:Pager

不能用,要么就是打开项目开发服务器命令

npm run serve

不能用,最终,尝试了一番将起到关键作用的包

less-loader

的版本降到了两个折中的版本号,运行命令

npm uninstall less-loader
npm i [email protected]

将这个包的版本限制到

6.0.0

,运行两个命令

npm run serve
npm run test:Pager

就都可以了,具体真的不知道什么原因,欢迎大家发表自己的见解 !

标签: javascript vue webpack

本文转载自: https://blog.csdn.net/facial_123/article/details/126557600
版权归原作者 Alex_Coder 所有, 如有侵权,请联系我们删除。

“ValidationError: Progress Plugin Invalid Options”的评论:

还没有评论