hash-webpack-plugin
v0.0.5
Published
Hash manifest file writer plugin for Webpack.
Downloads
454
Maintainers
Readme
hash-webpack-plugin
Hash manifest file writer plugin for Webpack.
Do you need to integrate Webpack with your ExpressJS app? Check the express-hash-webpack plugin.
Setup
npm instal --save-dev hash-webpack-plugin
Example
...
var HashPlugin = require('hash-webpack-plugin');
module.exports = {
...
plugins: [
new HashPlugin({ path: './build', fileName: 'hash.txt' })
]
};