Skip to content

Commit

Permalink
Change compression to gzip again
Browse files Browse the repository at this point in the history
  • Loading branch information
fabian-emilius committed Jul 2, 2024
1 parent e83f306 commit 792c4a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ const config: (env: Record<string, string>) => Configuration = (env) => {
new CleanWebpackPlugin(),
!IS_DEV &&
new CompressionPlugin({
filename: '[path][base].br',
algorithm: 'brotliCompress',
filename: '[path][base].gz',
algorithm: 'gzip',
test: /\.(js|css|html|svg)$/,
threshold: 10240,
minRatio: 0.8,
Expand Down

0 comments on commit 792c4a3

Please sign in to comment.