Skip to content

Commit

Permalink
Overriding default webpack performance config to reduce warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Choromanski committed Oct 19, 2023
1 parent c8c141f commit 2a5b76d
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 2a5b76d

Please sign in to comment.