Skip to content

Releases: iconduit/html-webpack-plugin

v0.4.1

03 Nov 03:48
v0.4.1
3c5002b

Choose a tag to compare

v0.4.1 Pre-release
Pre-release

Fixed

  • Fixed issues with Webpack 5.96.0 and beyond.

v0.4.0

02 Nov 10:58
v0.4.0
6e6c236

Choose a tag to compare

v0.4.0 Pre-release
Pre-release

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:

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

23 Oct 22:57
v0.3.0
08aa93d

Choose a tag to compare

v0.3.0 Pre-release
Pre-release

Changed

  • Updated to work with the latest version of webpack.

v0.2.2

14 Oct 09:28
v0.2.2
5310b11

Choose a tag to compare

v0.2.2 Pre-release
Pre-release
  • Pinned webpack version to avoid bugs with newer versions.

0.2.1

13 Jun 06:20

Choose a tag to compare

0.2.1 Pre-release
Pre-release
  • Fixed support for Node 12

0.2.0

13 Jun 05:32

Choose a tag to compare

0.2.0 Pre-release
Pre-release
  • Re-written to support Webpack 5