mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 11:58:04 +00:00
9 lines
316 B
JavaScript
9 lines
316 B
JavaScript
|
// biome-ignore lint/correctness/noUndeclaredDependencies: webpack works with commonjs
|
||
|
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
|
||
|
const config = require("./webpack.config.js");
|
||
|
|
||
|
module.exports = {
|
||
|
...config,
|
||
|
plugins: [...config.plugins, new BundleAnalyzerPlugin()],
|
||
|
};
|