ERROR in ./node_modules/bootstrap/dist/js/bootstrap.js Module not found: Error:

317 阅读1分钟

最近在调试一个项目,运行npm run dev 时报了以下这个错误:

ERROR Failed to compile with 1 errors

This dependency was not found:

  • jquery in ./node_modules/bootstrap/dist/js/bootstrap.js

To install it, you can run: npm install --save jquery

image.png

遇到事情不要慌,仔细看报错信息,To install it, you can run: npm install --save jquery,只要安装下就可以了,运行命令npm install --save jquery然后再运行npm run dev ,成功

image.png