electron-webpack icon indicating copy to clipboard operation
electron-webpack copied to clipboard

How i can disable ALL console.logs from webpack?

Open MaxmaxmaximusGitHub opened this issue 5 years ago • 0 comments

i want

  1. disable ALL console.logs from webpack
  2. disable ALL console.logs from dev server

how i can do it?

now i get this output, but the console should be absolutely clean:

image

p.s.

  1. my webpack config is applied
  2. and quiet mode not working
  3. i use this:
module.exports = (config) => {
  config.stats = 'none'

  config.devServer = {
    stats: 'none'
  }

  return config
}

MaxmaxmaximusGitHub avatar May 11 '20 00:05 MaxmaxmaximusGitHub