0.1.1 • Published 7 years ago

webpack-content-hash v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

webpack-content-hash

根据最后 webpack 最后生成的内容生成 hash 该插件只会对文件名进行修改

Install

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

Example

// webpack.config.js

var WebpackContentHash = require('webpack-content-hash');

module.exports = {
  // ...
  output: {
    filename: '[name]_[content].js',
  },
  plugins: [
    new WebpackContentHash() // 'md5' is default value
  ]
};