shellscape / webpack-manifest-plugin

webpack plugin for generating asset manifests
MIT License
1.43k stars 186 forks source link

The plugin does not work #204

Closed ghost closed 4 years ago

ghost commented 4 years ago

In webpack.config.js, I put

var ManifestPlugin = require('webpack-manifest-plugin'); ... module.exports = (env,args) => { return { ... plugins: [ ... new ManifestPlugin({ fileName: './webpack-manifest.json' }) ]

After running webpack, build succeeds as usual, but no webpack-manifest.json file is produced. There is no error message produced and no documentation on how to debug. No solution for this problem is found online.

I'm happy to provide more information if required. In principle, I would like to know what to do to debug a plugin which simply does nothing.