From b20f6ff8c17d2b659d10bf43378f59a7a7802db3 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Fri, 3 Feb 2017 11:40:07 +0000 Subject: [PATCH] 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) --- webpack.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/webpack.config.js b/webpack.config.js index 136e0af754..f3cffa0ea7 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -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, + }, }, };