Hashs all remaining modules that do not get hashed via HashedModuleIdsPlugin
npm install --save-dev hash-all-modules-plugin
webpack.config.js
const webpack = require('webpack');
const HashAllModulesPlugin = require('hash-all-modules-plugin');
module.exports = {
plugins: [
new webpack.HashedModuleIdsPlugin(),
new HashAllModulesPlugin()
]
}
This project is licensed under MIT.