webpack-split-plugin
v0.1.1
Published
custom code splitting in webpack [wip]
Downloads
9
Maintainers
Readme
🤸🔌 webpack-split-plugin
split bundle into multiple pieces with custom specifications (currently hard coded as 1/2 the size)
extension of CommonsChunkPlugin
📦 install
yarn add webpack-split-plugin --dev
npm i webpack-split-plugin --save-dev
const WebpackSplitPlugin = require('webpack-split-plugin')
📘 example
plugins: [
new WebpackSplitPlugin({
// * required
name: 'eh',
filename: '[name]-split.js',
// [optional], very verbose output
debug: true,
// [optional], automatically figures it out after first run
totalSize: '1937kb', // 1.937mb
}),
],
🔗 resources
🔬 tests
🚧 work-in-progress
more coming soon with stability & customizability.