Plugin to generate a hash based on output file's content with md5.
npm install webpack-content-md5-hash --save-dev
Just add this plugin as usual.
// webpack.config.js
var WebpackContentMd5Hash = require('webpack-content-md5-hash');
module.exports = {
// ...
plugins: [
new WebpackContentMd5Hash()
]
};