Replies: 1 comment 5 replies
-
We remove it because it is unnecessary, why you need this? Anyway we support it on webpack-cli level, how you run dev server? https://github.com/webpack/webpack-cli/blob/master/packages/webpack-cli/lib/plugins/CLIPlugin.js#L64 |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
With webpack-dev-server
3.x.x
, when runningwebpack serve
, after a change done in the src code, it was possible to see in the consolecompiling...
and thenCompiled successfully
such like this:However, after the release of webpack-dev-server 4, we don't see
compiling...
anymore, we only seeCompiled successfully
. In my opinion, it was quite useful to havecompiling...
like this we were aware that something was going on (more particularly when it is a bit long to reload).Beta Was this translation helpful? Give feedback.
All reactions