We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b545b51 commit dc7ebebCopy full SHA for dc7ebeb
lib/TemplatedPathPlugin.js
@@ -105,9 +105,9 @@ class TemplatedPathPlugin {
105
const outputOptions = this.outputOptions;
106
const chunkFilename = outputOptions.chunkFilename || outputOptions.filename;
107
if(REGEXP_CHUNKHASH_FOR_TEST.test(chunkFilename))
108
- hash.update(JSON.stringify(chunk.getChunkMaps(true, true).hash));
+ hash.update(JSON.stringify(chunk.getChunkMaps(false, true).hash));
109
if(REGEXP_NAME_FOR_TEST.test(chunkFilename))
110
- hash.update(JSON.stringify(chunk.getChunkMaps(true, true).name));
+ hash.update(JSON.stringify(chunk.getChunkMaps(false, true).name));
111
});
112
113
}
0 commit comments