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)
This commit is contained in:
@@ -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,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user