mirror of
https://github.com/Shopify/draggable.git
synced 2025-12-08 20:15:56 +00:00
20 lines
408 B
JavaScript
20 lines
408 B
JavaScript
import * as bundleAnalyzer from 'webpack-bundle-analyzer';
|
|
|
|
export default function initPlugins(isProd = false) {
|
|
const plugins = [];
|
|
|
|
if (isProd) {
|
|
console.log('Running in `production`');
|
|
}
|
|
|
|
plugins.push(
|
|
new bundleAnalyzer.BundleAnalyzerPlugin({
|
|
analyzerMode: 'static',
|
|
openAnalyzer: false,
|
|
reportFilename: '../../../bundle-report.html',
|
|
}),
|
|
);
|
|
|
|
return plugins;
|
|
}
|