Answers for "Error Cannot find module 'webpack-cli/bin/config-yargs'"

8

Error: Cannot find module 'webpack-cli/bin/config-yargs'

For webpack-cli 3.x:
"scripts": {
  "start:dev": "webpack-dev-server --mode=development"
}

For webpack-cli 4.x:
"scripts": {
  "start:dev": "webpack serve --mode=development"
}
Posted by: Guest on January-23-2021

Code answers related to "Error Cannot find module 'webpack-cli/bin/config-yargs'"

Browse Popular Code Answers by Language