dxmlicai-webpack-remove-chunk-entry
v1.0.0
Published
[![npm package](https://img.shields.io/npm/v/webpack-remove-chunk-entry.svg)](https://www.npmjs.org/package/webpack-remove-chunk-entry) [![npm downloads](http://img.shields.io/npm/dm/webpack-remove-chunk-entry.svg)](https://www.npmjs.org/package/webpack-r
Downloads
1
Readme
webpack-remove-chunk-entry
a plugin to help webpack to generate unique chunk id based on module id
install
npm install webpack-remove-chunk-entry --save-dev
features
- generate unique chunk id based on unique module id
usage
const RemoveChunkEntryPlugin = require('webpack-remove-chunk-entry');
plugins: [
new RemoveChunkEntryPlugin({
chunks: ['lib']
})
]