mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 10:15:31 +00:00
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer")
|
|
.BundleAnalyzerPlugin;
|
|
|
|
const merge = require("webpack-merge");
|
|
const prod = require("./webpack.prod.js");
|
|
|
|
const config = merge(prod, {
|
|
plugins: [new BundleAnalyzerPlugin()]
|
|
});
|
|
|
|
module.exports = config;
|