When you start the webpack-dev server, you do not actually build or rebuild the web package, but only serve it from memory.
In my experience, the way around this is to run two instances if you want to have the actual build as well as the webpack-dev server. So, in one terminal window
webpack --watch
running (webpack --watch will rebuild the actual package). Then in another terminal there is
webpack-dev-server
works, (webpack-dev-server will live and load a new assembly from memory).
source share