Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 357 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 357 Bytes

hashed-module-id-plugin

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

Install

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

Usage

Modify webpack.config.js:

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

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