mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
* chore(build): add script to analyze webpack bundle * chore(build): use single dep (lodash,moment)
12 lines
435 B
JavaScript
12 lines
435 B
JavaScript
const SpeedMeasurePlugin = require('speed-measure-webpack-plugin');
|
|
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
|
|
const smp = new SpeedMeasurePlugin();
|
|
const merge = require('webpack-merge');
|
|
const webpackConfig = require('./webpack.production.js');
|
|
// const webpackConfig = require('./webpack.develop.js');
|
|
|
|
module.exports = smp.wrap(
|
|
merge(webpackConfig, {
|
|
plugins: [new BundleAnalyzerPlugin()],
|
|
})
|
|
);
|