UNPKG

kradan

Version:

> The tool for helping you to boardcast your code in your class room.

14 lines (12 loc) 282 B
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin module.exports = { configureWebpack: _ => { if (process.env.NODE_ENV !== 'production') { return { plugins: [ new BundleAnalyzerPlugin() ] } } } }