I have a series of hot loader files (*.hot-loader.json) building up in my output directory. How can I ensure that this output directory cleans out the unecessary files?
Note: I am also using Webpack.
I have a series of hot loader files (*.hot-loader.json) building up in my output directory. How can I ensure that this output directory cleans out the unecessary files?
Note: I am also using Webpack.
Use
webpack-middleware-dev
, as these files will be loaded in memory rather than on disk.webpack-dev-server
useswebpack-middleware-dev
automatically.