Skip to content

Commit

Permalink
Use level 9 Zlib compression (#7513)
Browse files Browse the repository at this point in the history
  • Loading branch information
101arrowz committed Jan 5, 2022
1 parent e6c9677 commit 18a5bb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/compressors/gzip/src/GzipCompressor.js
Expand Up @@ -9,7 +9,7 @@ export default (new Compressor({
}

return {
stream: stream.pipe(zlib.createGzip()),
stream: stream.pipe(zlib.createGzip({level: 9})),
type: 'gz',
};
},
Expand Down

0 comments on commit 18a5bb4

Please sign in to comment.