Releases: iconduit/html-webpack-plugin
Releases · iconduit/html-webpack-plugin
v0.4.1
v0.4.0
Removed
- [BREAKING] Internal loaders for web app manifests and browser configuration files have been removed.
Internal loaders removed
This plugin no longer includes loaders for web app manifests or browser configuration files. There are two new loaders available to replace the removed loaders:
@iconduit/webmanifest-loaderfor web app manifests@iconduit/browserconfig-loaderfor browser configuration files
You'll need to add these loaders to your project's webpack configuration. A typical configuration might include the following:
// webpack.config.js
export default {
// ...
module: {
rules: [
// ...
{
test: /(\.webmanifest|\/manifest\.json)$/i,
type: "asset/resource",
use: "@iconduit/webmanifest-loader",
},
{
test: /\/browserconfig\.xml$/i,
type: "asset/resource",
use: "@iconduit/browserconfig-loader",
},
],
},
};v0.3.0
v0.2.2
- Pinned webpack version to avoid bugs with newer versions.
0.2.1
- Fixed support for Node 12
0.2.0
- Re-written to support Webpack 5