# webpack-plugins-collection **Repository Path**: zeroone0011/webpack-plugins-collection ## Basic Information - **Project Name**: webpack-plugins-collection - **Description**: 收集webpack plugins - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-12-23 - **Last Updated**: 2021-12-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # webpack-plugins-collection 收集webpack plugins #### workbox-webpack-plugin 这是webpack生成PWA的插件 ```javascript new WorkboxWebpackPlugin.GenerateSW({ clientsClaim: true, exclude: [/\.map$/, /asset-manifest\.json$/], importWorkboxFrom: 'cdn', navigateFallback: publicUrl + '/index.html', navigateFallbackBlacklist: [ new RegExp('^/_'), new RegExp('/[^/]+\\.[^/]+$'), ], }), ```