In my webpack config, Doing this reduced my incremental build time by 8 seconds and silenced output. The main one is chunks: false
Play with it to fit your 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
}
}
}