UNPKG

@iamota/iamota-webpack

Version:

Helper tools for Webpack for iamota Framework (WordPress and Shopify)

33 lines (27 loc) 725 B
// ---------------------------------------------------------------------------- // Webpack Bundle Analyzer // ---------------------------------------------------------------------------- // // Webpack bundle analyzer // // ---------------------------------------------------------------------------- // webpack Plugins const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin; /** * Initialize Config */ let config = {}; exports.init = function(config) { this.config = config; return this; }; /** * Bundle Analyzer */ exports.bundleAnalyzer = ({ options = {}, } = {}) => ({ plugins: [ new BundleAnalyzerPlugin(options), ], });