10 lines
240 B
JavaScript
10 lines
240 B
JavaScript
const merge = require('webpack-merge');
|
|
const prod = require('./webpack.prod-web.js');
|
|
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
|
|
|
|
module.exports = merge(prod, {
|
|
plugins: [
|
|
new BundleAnalyzerPlugin()
|
|
]
|
|
});
|