SU-SWS/react_paragraphs

View on GitHub
js/build-utils/addons/webpack.bundleanalyzer.js

Summary

Maintainability
A
0 mins
Test Coverage
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer')
  .BundleAnalyzerPlugin;

module.exports = {
  plugins: [
    new BundleAnalyzerPlugin({
      analyzerMode: 'server'
    })
  ]
};