electron-webpack
electron-webpack copied to clipboard
How i can disable ALL console.logs from webpack?
i want
- disable ALL console.logs from webpack
- disable ALL console.logs from dev server
how i can do it?
now i get this output, but the console should be absolutely clean:

p.s.
- my webpack config is applied
- and quiet mode not working
- i use this:
module.exports = (config) => {
config.stats = 'none'
config.devServer = {
stats: 'none'
}
return config
}