Created
July 6, 2016 21:24
-
-
Save kisenka/314ed3f8cf0c56f6ba026ec724b59e90 to your computer and use it in GitHub Desktop.
Webpack dev server build info show only errors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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