html-bundler-webpack-plugin
Advanced tools
Changelog
2.6.0 (2023-08-09)
css.chunkFilename
option for output filename of non-initial chunk fileshotUpdate
option to enable/disable live reload in serve/watch modecreate-react-app
(alpha version)Changelog
2.5.1 (2023-08-04)
Changelog
2.5.0 (2023-07-30)
data
in the plugin options.new HtmlBundlerPlugin({
entry: {
index: './src/views/home.ejs',
},
// new reference to the loaderOptions.data
data: {...},
}),
The old syntax is still valid:
new HtmlBundlerPlugin({
entry: {
index: './src/views/home.ejs',
},
loaderOptions: {
// original option is under loaderOptions
data: {...},
},
}),
Changelog
2.4.0 (2023-07-28)
Changelog
2.2.1 (2023-07-23)
Changelog
2.2.0 (2023-07-21)
preprocessor
and preprocessorOptions
in the plugin options.new HtmlBundlerPlugin({
entry: {
index: './src/views/home.ejs',
},
// new references to options in the loaderOptions
preprocessor: 'ejs',
preprocessorOptions: {...},
}),
The old syntax is still valid:
new HtmlBundlerPlugin({
entry: {
index: './src/views/home.ejs',
},
loaderOptions: {
// original options are under loaderOptions
preprocessor: 'ejs',
preprocessorOptions: {...},
},
}),