bundles check (#2612)

bundles check service
This commit is contained in:
Eugenio Romano
2017-11-06 23:38:29 +00:00
committed by GitHub
parent f9b8d9f0eb
commit 406b2833bb
9 changed files with 250 additions and 85 deletions

View File

@@ -0,0 +1,10 @@
const webpackMerge = require('webpack-merge');
const webpackBuild = require('./webpack.build.js');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
module.exports = webpackMerge(webpackBuild, {
plugins: [
new BundleAnalyzerPlugin()
]
});