akfun 3.1.0 → 3.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akfun",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "前端脚手架:支持Vue技术栈和react技术栈",
5
5
  "keywords": [
6
6
  "前端工程",
@@ -138,7 +138,7 @@ module.exports = (akfunConfig) => {
138
138
  }
139
139
 
140
140
  if (curEnvConfig.bundleAnalyzerReport) {
141
- webpackProdConfig.plugins.push(new BundleAnalyzerPlugin());
141
+ webpackConfig.plugins.push(...curWebpackConfig.plugins);
142
142
  }
143
143
 
144
144
  return webpackProdConfig;