We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e078d5e + cffa65d commit 70edb12Copy full SHA for 70edb12
index.js
@@ -48,6 +48,12 @@ module.exports = class SpeedMeasurePlugin {
48
return new WrappedPlugin(plugin, pluginName, this);
49
});
50
51
+ if (config.optimization && config.optimization.minimizer) {
52
+ config.optimization.minimizer = config.optimization.minimizer.map(plugin => {
53
+ return new WrappedPlugin(plugin, plugin.constructor.name, this);
54
+ });
55
+ }
56
+
57
if (config.module && this.options.granularLoaderData) {
58
config.module = prependLoader(config.module);
59
}
0 commit comments