2023-05-24 15:34:43 +03:00
|
|
|
const { merge } = require("webpack-merge");
|
2023-01-20 16:20:06 +03:00
|
|
|
|
2023-05-24 15:34:43 +03:00
|
|
|
const BundleAnalyzerPlugin =
|
|
|
|
require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
|
2023-01-20 16:20:06 +03:00
|
|
|
|
2023-05-24 15:34:43 +03:00
|
|
|
const prod = require("./prod");
|
2023-01-20 16:20:06 +03:00
|
|
|
|
|
|
|
module.exports = merge(prod, {
|
2023-05-24 15:34:43 +03:00
|
|
|
plugins: [new BundleAnalyzerPlugin()],
|
|
|
|
});
|