Webpack: silence output -
i know if there's configuration option tell webpack log "important information" terminal. pretty errors , warnings, not of this:
there's output! love suppress common stuff , have webpack output warnings/errors. solution webpack
, webpack-dev-server
, , karma-webpack
.
note: tried noinfo: true
, quiet: true
didn't seem trick.
edit: i'm thinking may not possible, i've created issue on github: https://github.com/webpack/webpack/issues/1191
in webpack config, doing reduced incremental build time 8 seconds , silenced output. main 1 chunks: false
play fit needs
module.exports = { devserver: { stats: { colors: true, hash: false, version: false, timings: false, assets: false, chunks: false, modules: false, reasons: false, children: false, source: false, errors: false, errordetails: false, warnings: false, publicpath: false } } }
Comments
Post a Comment