UNPKG

@enact/dev-utils

Version:

A collection of development utilities for Enact apps.

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