Skip to content

Commit

Permalink
Merge pull request #102 from ls1intum/fix/revert-brotli-compression
Browse files Browse the repository at this point in the history
Revert brotli compression to gzip
  • Loading branch information
Stephan Krusche authored Jul 2, 2024
2 parents e83f306 + 792c4a3 commit c8c9f7b
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 c8c9f7b

Please sign in to comment.