So that webpack-bundle-delta can provide more meaningful comparisons closer to what the end user would be receiving we advise that you also include gzip and brotli compressions to your webpack output.
To get the compressed versions, you can use CompressionWebpackPlugin.
Install CompressionWebpackPlugin:
# npm
$ npm install compression-webpack-plugin --save-dev
# yarn
$ yarn add compression-webpack-plugin --devConfiguring webpack to produce the output is relatively straightforward
# webpack.config.js
const { StatsWriterPlugin } = require('webpack-stats-plugin');
module.exports = {
plugins: [
// build gzip assets
new CompressionPlugin({
filename: '[path][base].gz',
algorithm: 'gzip',
test: /\.(js|mjs|css)$/,
}),
// build brotli assets
new CompressionPlugin({
filename: '[path][base].br',
algorithm: 'brotliCompress',
test: /\.(js|mjs|css)$/,
}),
]
}It is worth taking a read of the documentation for more details as to how to best configure the compressed output for your needs.