Description
Bug report
What is the current behavior?
Chunks will receive names containing a hash with this code:
output: {
filename: '[name]-[contenthash].js',
}
Chunks will receive names without hashes (e.g., 113.js
) with this code:
output: {
filename: () => '[name]-[contenthash].js',
}
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:
$ 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.
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.