Skip to content

Commit

Permalink
increase webpack entrypoint max size to 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
kfarr committed Jul 2, 2024
1 parent 6b545f0 commit 11b3c49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack.prod.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ const DEPLOY_ENV = process.env.DEPLOY_ENV ?? 'production';

module.exports = {
performance: {
maxAssetSize: 1677722, // 1.6 MiB
maxEntrypointSize: 1677722, // 1.6 MiB
maxAssetSize: 1777722, // 1.7 MiB
maxEntrypointSize: 1777722, // 1.7 MiB
hints: 'error'
},
mode: 'production',
Expand Down

0 comments on commit 11b3c49

Please sign in to comment.