/webpack-hashed-module-id-plugin

Help making stable module id (compatible with Webpack 1 & 2)

Primary LanguageJavaScriptMIT LicenseMIT

webpack-hashed-module-id-plugin

Help creating stable module id (compatible with Webpack 1 & 2)

Install

npm install webpack-hashed-module-id-plugin --save

Usage

Modify webpack.config.js:

const HashedModuleIdsPlugin = require("webpack-hashed-module-id-plugin");

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