mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
11 lines
293 B
JavaScript
11 lines
293 B
JavaScript
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()
|
|
]
|
|
});
|