Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 412 Bytes

README.md

File metadata and controls

29 lines (18 loc) · 412 Bytes

webpack-content-md5-hash

Plugin to generate a hash based on output file's content with md5.

Installation

npm install webpack-content-md5-hash --save-dev

Usage

Just add this plugin as usual.

// webpack.config.js

var WebpackContentMd5Hash = require('webpack-content-md5-hash');

module.exports = {
    // ...
    plugins: [
        new WebpackContentMd5Hash()
    ]
};