electron-userland / electron-userland/electron-webpack
How i can disable ALL console.logs from webpack?
Open
- Dominant language
- TypeScript
- Stars
- 902
- Forks
- 168
- PR merge metrics
- No merged PRs in 30d
Description
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:

p.s.
1) my webpack config is applied
2) and quiet mode not working
3) i use this:
```javascript
module.exports = (config) => {
config.stats = 'none'
config.devServer = {
stats: 'none'
}
return config
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.