Replies: 1 comment 25 replies
-
Do you have |
Beta Was this translation helpful? Give feedback.
25 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I recently upgraded to webpack 5, and I'm noticing that our builds no longer have deterministic outputs. I've narrowed down the issue to
optimization.concatenateModules
– when I set it tofalse
, I get the same output on every build, although I'd like to keepconcatenateModules
on. With it on, the output just differs slightly. It looks like the modules are being concatenated in different orders? For example:Any idea what might be causing this? Not sure if it's a bug in the
ModuleConcatenationPlugin
, but given that I haven't seen any other issues about this or any mention of this problem online, I figure maybe there's something in our configuration that could be causing this?Beta Was this translation helpful? Give feedback.
All reactions