entry-hash-webpack-plugin
v1.0.1
Published
A webpack plugin to add entry js to index.html
Downloads
6
Readme
entry-hash-webpack-plugin
A webpack plugin to add entry js to index.html
Installation
npm install clean-webpack-plugin --save-dev
Example Webpack Config
var entryHashWebpackPlugin = require('entry-hash-webpack-plugin');
module.exports = {
plugins: [
new entryHashWebpackPlugin({isProduction:true, entryName:'__main_entry__'})
]
}