# webpack-plugins **Repository Path**: shendeganjue/webpack-plugins ## Basic Information - **Project Name**: webpack-plugins - **Description**: 自定义webpack插件集合 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-07-11 - **Last Updated**: 2021-11-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # extract-chunks-webpack-plugin > Note: that `extract-chunks-webpack-plugin` supports webpack3-
# Development & Deployment ## How to get codes from remote GIT repository ```bash $ git@github.com:fengxinming/extract-chunks-webpack-plugin.git $ cd extract-chunks-webpack-plugin $ cnpm install ``` ## How to use it ```bash plugins: [ new webpack.optimize.ModuleConcatenationPlugin(), new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/), new ExtractChunks({ filename: path.join(process.cwd(), 'tmp', 'chunks.json') }) ], ```