Silence webpack dev server

Configure the dev server not to spew module lists all over the console.

(Arguably the fact our module list is so long that I have to do this is a bug,
but my life is too short)
pull/3125/head
Richard van der Hoff 2017-02-03 11:40:07 +00:00
parent 0050e1557d
commit b20f6ff8c1
1 changed files with 5 additions and 0 deletions

View File

@ -132,6 +132,11 @@ module.exports = {
devServer: {
// serve unwebpacked assets from webapp.
contentBase: './webapp',
stats: {
// don't fill the console up with a mahoosive list of modules
chunks: false,
},
},
};