Skip to content

Instantly share code, notes, and snippets.

@kisenka
Created July 6, 2016 21:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kisenka/314ed3f8cf0c56f6ba026ec724b59e90 to your computer and use it in GitHub Desktop.
Save kisenka/314ed3f8cf0c56f6ba026ec724b59e90 to your computer and use it in GitHub Desktop.
Webpack dev server build info show only errors
devServer: {
// It suppress error shown in console, so it has to be set to false.
quiet: false,
// It suppress everything except error, so it has to be set to false as well
// to see success build.
noInfo: false,
stats: {
// Config for minimal console.log mess.
assets: false,
colors: true,
version: false,
hash: false,
timings: false,
chunks: false,
chunkModules: false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment