You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can observe the behavior by downloading the repo and running:
$ npm install
$ npm run build
$ ls dist
You will see a chunk without a hash in its name.
What is the expected behavior?
I would expect identical behavior between the two examples above because the function version always resolves to the same string as the original snippet.
It is possible to workaround this bug by explicitly setting chunkFilename. So I'm fine, but I wanted to report this so that it can get fixed and others won't be impacted by this surprising behavior.
The text was updated successfully, but these errors were encountered:
Bug report
What is the current behavior?
Chunks will receive names containing a hash with this code:
Chunks will receive names without hashes (e.g.,
113.js
) with this code:If the current behavior is a bug, please provide the steps to reproduce.
Here is a full minimal reproduction of the issue: https://github.com/skylerberg/webpack-chunk-name-issue
You can observe the behavior by downloading the repo and running:
You will see a chunk without a hash in its name.
What is the expected behavior?
I would expect identical behavior between the two examples above because the function version always resolves to the same string as the original snippet.
Other relevant information:
webpack version: 5.89.0
Node.js version: v18.17.1
Operating System: Pop!_OS 20.04
It is possible to workaround this bug by explicitly setting
chunkFilename
. So I'm fine, but I wanted to report this so that it can get fixed and others won't be impacted by this surprising behavior.The text was updated successfully, but these errors were encountered: