Skip to content

Commit

Permalink
Merge pull request #1886 from Choromanski/master
Browse files Browse the repository at this point in the history
Overriding default webpack performance config to reduce warnings
  • Loading branch information
ajayyy authored Sep 8, 2024
2 parents fcf096c + 2a5b76d commit 0a7497b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion webpack/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,12 @@ module.exports = env => {
stream: env.stream
}),
new configDiffPlugin()
]
],
performance: {
hints: false,
maxEntrypointSize: 512000,
maxAssetSize: 512000
}

};
};

0 comments on commit 0a7497b

Please sign in to comment.