mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 09:15:41 +03:00
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:
parent
0050e1557d
commit
b20f6ff8c1
1 changed files with 5 additions and 0 deletions
|
@ -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,
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue