<!-- ⚡️ katchow! We 💛 issues. Please - do not - remove this template. Please - do not - skip or remove parts of this template. Or your issue may be closed. 👉🏽 Need help or tech support? Don't open an issue! Head to https://gitter.im/webpack/webpack or https://stackoverflow.com/questions/tagged/webpack ❤️ This plugin? Please consider sponsoring this project: 👉 https://github.com/sponsors/shellscape --> - Manifest Plugin Version: 3.1.1 Documentation Is: <!-- Please place an x (no spaces!) in all [ ] that apply --> - [x] Missing - [ ] Needed - [ ] Confusing - [ ] Not Sure? ### Please Explain in Detail... webpack-clean plugin deletes manifest.json if used with webpack-dev-server. It should be documented that you have to exclude manifest.json like this ```javascript new CleanWebpackPlugin({ verbose: true, //important elsewise minifest.json is deleted cleanOnceBeforeBuildPatterns: ['**/*', '!manifest.json'], }), ```