Skip to content

Commit

Permalink
Use clientLogLevel:silent in webpack-dev-server config (#878)
Browse files Browse the repository at this point in the history
As of [v3.4.0](https://github.com/webpack/webpack-dev-server/releases/tag/v3.4.0) the option "none" is no longer a valid value for webpack-dev-server's clientLogLevel config.

webpack/webpack-dev-server#1825
  • Loading branch information
hubgit authored and swyxio committed May 17, 2019
1 parent b2091fb commit 56d2a67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/docz-core/src/bundler/devserver.ts
Expand Up @@ -17,7 +17,7 @@ export const devServerConfig = (hooks: ServerHooks, args: Args) => {
publicPath: '/',
compress: true,
logLevel: args.debug ? 'debug' : 'silent',
clientLogLevel: args.debug ? 'info' : 'none',
clientLogLevel: args.debug ? 'info' : 'silent',
contentBase: [nonExistentDir],
watchContentBase: true,
hot: true,
Expand Down

0 comments on commit 56d2a67

Please sign in to comment.