forked from Github/ocrcc-chatbox
7 lines
255 B
JavaScript
7 lines
255 B
JavaScript
|
const config = require('./webpack.config');
|
||
|
|
||
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
||
|
|
||
|
config[0].plugins = config[0].plugins.concat([new BundleAnalyzerPlugin({ analyzerPort: 5555 })]);
|
||
|
|
||
|
module.exports = config;
|