incorrect:
devServer: {
clientLogLevel: 'debug'
}
webpack Dev Server Invalid Options
options.clientLogLevel should be {String} and equal to one of the allowed values
[ 'trace', 'debug', 'info', 'warn', 'error', 'silent' ]
(https://webpack.js.org/configuration/dev-server/#devserver-clientloglevel)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
correct:
devServer: {
clientLogLevel: 'info'
}
Reading the error, 'debug' option does exist in schema error description, but doesn't pass the validation right?
@EugeneHlushko https://github.com/fengxinming/reappear-webpack-config-bug
Please check it
@EugeneHlushko https://github.com/fengxinming/reappear-webpack-config-bug
Please check it
@hiroppy can you please have a look, i dont see why this is happening
@fengxinming this is working for me. Here is a minimal example for this https://github.com/rishabh3112/issues/tree/master/webpackdocs%233374

@rishabh3112 I see but I met this problem from create-react-app after ejecting webpack config, I feel like webpack-dev-server@latest has fixed this issues.
@fengxinming As you have now ejected the config, try updating the webpack-dev-server. It should solve the issue.
Closing for now
i got same issue after split webpack.config.js with command expo customize:web.. i try downgrade webpack-config. and solve
yarn add [email protected]