Improve/silence WebpackDevServer client
See original GitHub issueThis doesn’t help anyone, it’s just annoying:
Similarly, these logs are not useful to us:
We should a PR to webpack-dev-server
to deduplicate logs, and to optionally disable some of them. If it isn’t accepted, we should replace these parts with custom scripts—they are really small, easy to tweak, and almost never change.
Issue Analytics
- State:
- Created 7 years ago
- Reactions:3
- Comments:7 (6 by maintainers)
Top Results From Across the Web
Webpack: silence output - Stack Overflow
In my webpack config, Doing this reduced my incremental build time by 8 seconds and silenced output. The main one is chunks: false....
Read more >DevServer - webpack
webpack -dev-server can be used to quickly develop an application. See the development guide to get started. This page describes the options that...
Read more >webpack-dev-server
webpack -dev-server. The webpack-dev-server is a little node.js Express server, which uses the [[webpack-dev-middleware]] to serve a webpack bundle.
Read more >How to use the webpack-dev-server function in ... - Snyk
export default function (app) { let bundleStartTime = null; // Inform the user on the status of webpacking let compiler = Webpack(WebpackConfig); compiler....
Read more >Chapter IV - Setting up webpack-dev-server
Create an instance of the webpack-dev-server. We pass the webpack compiler instance and some options. The most noteworthy option here is hot: config.hmrEnabled ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Also backported to 1.x and now used by CRA (thanks!) With exponential backoff I only see a few of these so I think it’s fine now.
Hi, could you guys check if this PR https://github.com/webpack/webpack-dev-server/pull/579 works for you? I’m maintaining webpack-dev-server and interested to work with you to fix annoyances 😃.