UNPKG

@enact/dev-utils

Version:

A collection of development utilities for Enact apps.

14 lines (12 loc) 270 B
const {BundleAnalyzerPlugin} = require('webpack-bundle-analyzer'); module.exports = { apply: function(config) { config.plugins.push( new BundleAnalyzerPlugin({ analyzerMode: 'static', reportFilename: 'stats.html', openAnalyzer: false }) ); } };