mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 11:58:04 +00:00
8 lines
229 B
JavaScript
8 lines
229 B
JavaScript
|
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
|
||
|
const config = require("./webpack.config.js");
|
||
|
|
||
|
module.exports = {
|
||
|
...config,
|
||
|
plugins: [...config.plugins, new BundleAnalyzerPlugin()],
|
||
|
};
|