extract-chunks-webpack-plugin
v4.0.0
Published
extract chunks as webpack plugin 提取编译后的chunk分支
Readme
extract-chunks-webpack-plugin
Note: that
extract-chunks-webpack-pluginsupports webpack3-
Development & Deployment
How to get codes from remote GIT repository
$ [email protected]:fengxinming/extract-chunks-webpack-plugin.git
$ cd extract-chunks-webpack-plugin
$ cnpm installHow to use it
plugins: [
new webpack.optimize.ModuleConcatenationPlugin(),
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
new ExtractChunks({
filename: path.join(process.cwd(), 'tmp', 'chunks.json')
})
],