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
What is the current behavior?
Assets with [contenthash] in the filename template do not produce different hashes when changing the value of the output.hashSalt webpack configuration property, if optimization.realContentHash is true.
If the current behavior is a bug, please provide the steps to reproduce.
Create a trivial webpack project with a [contenthash] in the output filename template and optimization.realContentHash set to true.
Vary the value of the output.hashSalt property and observe that emitted filenames don't change.
What is the expected behavior?
Changing the value of output.hashSalt should change the results of all filename hashes.
Bug report
What is the current behavior?
Assets with
[contenthash]
in the filename template do not produce different hashes when changing the value of theoutput.hashSalt
webpack configuration property, ifoptimization.realContentHash
istrue
.If the current behavior is a bug, please provide the steps to reproduce.
Create a trivial webpack project with a
[contenthash]
in the output filename template andoptimization.realContentHash
set totrue
.Vary the value of the
output.hashSalt
property and observe that emitted filenames don't change.What is the expected behavior?
Changing the value of
output.hashSalt
should change the results of all filename hashes.Inspection of the code here:
webpack/lib/optimize/RealContentHashPlugin.js
Lines 365 to 368 in b67626c
Shows that
RealContentHashPlugin
does not look upoutputOptions.hashSalt
and apply it to the newly created Hash object.Other relevant information:
webpack version: 5.75.0
Node.js version: 16.19.1
Operating System: Linux
Additional tools:
The text was updated successfully, but these errors were encountered: