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 9827a01 commit 4fca596Copy full SHA for 4fca596
index.js
@@ -79,7 +79,10 @@ class HtmlWebpackPlugin {
79
}
80
81
apply (compiler) {
82
- hookIntoCompiler(compiler, this.options, this);
+ // Wait for configuration preset plugions to apply all configure webpack defaults
83
+ compiler.hooks.initialize.tap('HtmlWebpackPlugin', () => {
84
+ hookIntoCompiler(compiler, this.options, this);
85
+ });
86
87
88
/**
0 commit comments