Understand size definitions
mainThe analyzer reports several types of module sizes. You can control which is shown by default using defaultSizes:
stat: The "input" size of your files, before any transformations like minification. Obtained from Webpack's stats object.parsed: The "output" size of your files (e.g., the minified size after using Uglify/Terser).gzip: The size of the parsed bundles/modules after gzip compression.brotli: The size of the parsed bundles/modules after Brotli compression.zstd: The size of the parsed bundles/modules after Zstandard compression (requires Node.js 22.15.0+).