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"
}
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"
}
webpack-cli/bin/config-yargs
NPM package.json scripts are a convenient and useful means to run locally installed binaries without having to be concerned about their full paths. Simply define a script as such:
+ For webpack-cli 3.x:
+
"scripts": {
"start:dev": "webpack-dev-server"
}
+ For webpack-cli 4.x:
+
+ "scripts": {
+ "start:dev": "webpack serve"
+}
And run the following in your terminal/console:
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us