Skip to content

Commit e869ac6

Browse files
Update function call to match actual function name
1 parent 1aff286 commit e869ac6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/plugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class WebpackHashExcludePlugin {
2525
// Replace the hash value of the html static resource
2626
if (this.options.removeHtmlHash) {
2727
compiler.hooks.compilation.tap('WebpackHashExclude', (compilation) => {
28-
HtmlWebpackPlugin.getHooks(compilation).alterAssetTags.tapAsync('WebpackHashExclude', (data, callback) => this.removeHtmlHash(data, callback));
28+
HtmlWebpackPlugin.getHooks(compilation).alterAssetTags.tapAsync('WebpackHashExclude', (data, callback) => this.renameAssetTags(data, callback));
2929
});
3030
}
3131
}

0 commit comments

Comments
 (0)