webpack报错: Error: Cannot find module ‘webpack-cli/bin/config-yargs‘ (不降版本)

报错:webpack版本与webpack-cli版本之间不兼容的问题

internal/modules/cjs/loader.js:883
throw err;
^
Error: Cannot find module ‘webpack-cli/bin/config-yargs’
Require stack:
-C:\Users\Administrator\Desktop\前端\Webpack\node_modules\webpack-dev-server\bin\webpack-dev-server.js

解决方法:

npx webpack-dev-server

改为

npx webpack serve 

猜你喜欢

转载自blog.csdn.net/ladream/article/details/118825538