Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 607 Bytes

readme.md

File metadata and controls

20 lines (17 loc) · 607 Bytes

webpack-remove-chunk-entry

npm package npm downloads

a plugin to help webpack to remove chunk's entry code

install

npm install webpack-remove-chunk-entry --save-dev

usage

const RemoveChunkEntryPlugin = require('webpack-remove-chunk-entry');

plugins: [
    new RemoveChunkEntryPlugin({
        chunks: ['lib']
    })
]