In webpack's getting started page, under the section about webpack-dev-server
it mentions -
The dev server uses webpack’s watch mode. It also prevents webpack from emitting the resulting files to disk. Instead it keeps and serves the resulting files from memory.
Does this mean that the bundled file webpack-dev-server
compiles is only kept in memory, and I have to also leave webpack --watch
running in the background along with the dev-server process to actually save the compiled file to my hard drive?