{"id":35474646,"url":"https://github.com/rstackjs/html-rspack-plugin","last_synced_at":"2026-02-02T08:53:31.804Z","repository":{"id":247333810,"uuid":"825318563","full_name":"rstackjs/html-rspack-plugin","owner":"rstackjs","description":"An Rspack plugin for generating HTML files. It is forked from `html-webpack-plugin` and provides better performance.","archived":false,"fork":false,"pushed_at":"2025-12-31T13:14:57.000Z","size":1519,"stargazers_count":16,"open_issues_count":11,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-03T21:41:15.884Z","etag":null,"topics":["rsbuild","rspack","rspack-plugin"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rstackjs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":null,"patreon":null,"open_collective":"html-webpack-plugin","ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2024-07-07T12:56:16.000Z","updated_at":"2025-12-04T02:13:17.000Z","dependencies_parsed_at":"2024-08-02T13:15:47.240Z","dependency_job_id":"0a18756d-d272-4ad3-8104-1eb578e8cf90","html_url":"https://github.com/rstackjs/html-rspack-plugin","commit_stats":null,"previous_names":["rspack-contrib/html-rspack-plugin"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/rstackjs/html-rspack-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstackjs%2Fhtml-rspack-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstackjs%2Fhtml-rspack-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstackjs%2Fhtml-rspack-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstackjs%2Fhtml-rspack-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rstackjs","download_url":"https://codeload.github.com/rstackjs/html-rspack-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rstackjs%2Fhtml-rspack-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28251784,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2026-01-09T02:00:07.210Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["rsbuild","rspack","rspack-plugin"],"created_at":"2026-01-03T12:00:40.055Z","updated_at":"2026-01-09T02:01:47.580Z","avatar_url":"https://github.com/rstackjs.png","language":"JavaScript","readme":"# html-rspack-plugin\n\nAn Rspack plugin for generating HTML files.\n\n![](https://img.shields.io/npm/v/html-rspack-plugin.svg)\n\n## Notice\n\nThis plugin is forked from [jantimon/html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin), it is designed for Rspack and provides better performance than `html-webpack-plugin`.\n\nThe function of this plugin is basically the same as `html-webpack-plugin`.\n\n\u003e Big thanks to `html-webpack-plugin` creators and contributors for their great work. ❤️\n\n## Diff\n\nDifferences with `html-webpack-plugin`:\n\n- Designed for Rspack\n  - Import type from `@rspack/core`\n- Less dependencies\n  - Removed `html-minifier-terser` and allows to use any HTML minimizer\n  - Removed `lodash` dependency with a forked minimal version\n  - Removed `pretty-error` dependency\n  - Removed `webpack` peer dependency\n- Performance improvements for Rspack:\n  - Removed support for HTML5 Application caches (it has been deprecated)\n  - Reuse `compilation.entrypoints`\n\n## Install\n\n```bash\n# npm\nnpm add -D html-rspack-plugin\n\n# yarn\nyarn add -D html-rspack-plugin\n\n# pnpm\npnpm add -D html-rspack-plugin\n```\n\n## Usage\n\nThe plugin will generate an HTML5 file for you that includes all your Rspack bundles in the head using `script` tags. Just add the plugin to your Rspack config as follows:\n\n**rspack.config.js**\n\n```js\nconst HtmlRspackPlugin = require('html-rspack-plugin');\n\nmodule.exports = {\n  entry: 'index.js',\n  output: {\n    path: __dirname + '/dist',\n    filename: 'index_bundle.js',\n  },\n  plugins: [new HtmlRspackPlugin()],\n};\n```\n\nThis will generate a file `dist/index.html` containing the following\n\n```html\n\u003c!doctype html\u003e\n\u003chtml\u003e\n  \u003chead\u003e\n    \u003cmeta charset=\"utf-8\" /\u003e\n    \u003ctitle\u003eRspack App\u003c/title\u003e\n    \u003cscript defer src=\"index_bundle.js\"\u003e\u003c/script\u003e\n  \u003c/head\u003e\n  \u003cbody\u003e\u003c/body\u003e\n\u003c/html\u003e\n```\n\nIf you have multiple Rspack entry points, they will all be included with `script` tags in the generated HTML.\n\nIf you have any CSS assets in Rspack's output (for example, CSS extracted with the [CssExtractRspackPlugin](https://www.rspack.dev/plugins/rspack/css-extract-rspack-plugin)) then these will be included with `\u003clink\u003e` tags in the HTML head.\n\nIf you have plugins that make use of it, `html-rspack-plugin` should be ordered first before any of the integrated Plugins.\n\n## Options\n\nYou can pass a hash of configuration options to `html-rspack-plugin`. Allowed values are as follows:\n\n| Name | Type | Default | Description |\n| :-: | :-: | :-: | :-- |\n| **`title`** | `{String}` | `Rspack App` | The title to use for the generated HTML document |\n| **`filename`** | `{String\\|Function}` | `'index.html'` | The file to write the HTML to. Defaults to `index.html`. You can specify a subdirectory here too (eg: `assets/admin.html`). The `[name]` placeholder will be replaced with the entry name. Can also be a function e.g. `(entryName) =\u003e entryName + '.html'`. |\n| **`template`** | `{String}` | `` | Rspack relative or absolute path to the template. By default it will use `src/index.ejs` if it exists. Please see the [docs](https://github.com/rspack-contrib/html-rspack-plugin/blob/master/docs/template-option.md) for details |\n| **`templateContent`** | `{string\\|Function\\|false}` | false | Can be used instead of `template` to provide an inline template - please read the [Writing Your Own Templates](https://github.com/rspack-contrib/html-rspack-plugin#writing-your-own-templates) section |\n| **`templateParameters`** | `{Boolean\\|Object\\|Function}` | `false` | Allows to overwrite the parameters used in the template - see [example](https://github.com/rspack-contrib/html-rspack-plugin/tree/master/examples/template-parameters) |\n| **`inject`** | `{Boolean\\|String}` | `true` | `true \\|\\| 'head' \\|\\| 'body' \\|\\| false` Inject all assets into the given `template` or `templateContent`. When passing `'body'` all javascript resources will be placed at the bottom of the body element. `'head'` will place the scripts in the head element. Passing `true` will add it to the head/body depending on the `scriptLoading` option. Passing `false` will disable automatic injections. - see the [inject:false example](https://github.com/rspack-contrib/html-rspack-plugin/tree/master/examples/custom-insertion-position) |\n| **`publicPath`** | `{String\\|'auto'}` | `'auto'` | The publicPath used for script and link tags |\n| **`scriptLoading`** | `{'blocking'\\|'defer'\\|'module'\\|'systemjs-module'}` | `'defer'` | Modern browsers support non blocking javascript loading (`'defer'`) to improve the page startup performance. Setting to `'module'` adds attribute [`type=\"module\"`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules#applying_the_module_to_your_html). This also implies \"defer\", since modules are automatically deferred. |\n| **`favicon`** | `{String}` | `` | Adds the given favicon path to the output HTML |\n| **`meta`** | `{Object}` | `{}` | Allows to inject `meta`-tags. E.g. `meta: {viewport: 'width=device-width, initial-scale=1, shrink-to-fit=no'}` |\n| **`base`** | `{Object\\|String\\|false}` | `false` | Inject a [`base`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base) tag. E.g. `base: \"https://example.com/path/page.html` |\n| **`minify`** | `(html: string) =\u003e string \\| Promise\u003cstring\u003e` | `` | A function to minify HTML, see [minification](#minification) below for more details. |\n| **`hash`** | `{Boolean}` | `false` | If `true` then append a unique Rspack compilation hash to all included scripts and CSS files (i.e. `main.js?hash=compilation_hash`). This is useful for cache busting |\n| **`cache`** | `{Boolean}` | `true` | Emit the file only if it was changed |\n| **`showErrors`** | `{Boolean}` | `true` | Errors details will be written into the HTML page |\n| **`chunks`** | `{?}` | `?` | Allows you to add only some chunks (e.g only the unit-test chunk) |\n| **`chunksSortMode`** | `{String\\|Function}` | `auto` | Allows to control how chunks should be sorted before they are included to the HTML. Allowed values are `'none' \\| 'auto' \\| 'manual' \\| {Function}` |\n| **`excludeChunks`** | `{Array.\u003cstring\u003e}` | `` | Allows you to skip some chunks (e.g don't add the unit-test chunk) |\n| **`xhtml`** | `{Boolean}` | `false` | If `true` render the `link` tags as self-closing (XHTML compliant) |\n\nHere's an example Rspack config illustrating how to use these options\n\n**rspack.config.js**\n\n```js\n{\n  entry: 'index.js',\n  output: {\n    path: __dirname + '/dist',\n    filename: 'index_bundle.js'\n  },\n  plugins: [\n    new HtmlRspackPlugin({\n      title: 'My App',\n      filename: 'assets/admin.html'\n    })\n  ]\n}\n```\n\n### Generating Multiple HTML Files\n\nTo generate more than one HTML file, declare the plugin more than once in your plugins array\n\n**rspack.config.js**\n\n```js\n{\n  entry: 'index.js',\n  output: {\n    path: __dirname + '/dist',\n    filename: 'index_bundle.js'\n  },\n  plugins: [\n    new HtmlRspackPlugin(), // Generates default index.html\n    new HtmlRspackPlugin({  // Also generate a test.html\n      filename: 'test.html',\n      template: 'src/assets/test.html'\n    })\n  ]\n}\n```\n\n### Writing Your Own Templates\n\nIf the default generated HTML doesn't meet your needs you can supply your own template. The easiest way is to use the `template` option and pass a custom HTML file. The html-rspack-plugin will automatically inject all necessary CSS, JS and favicon files into the markup.\n\nDetails of other template loaders are [documented here](https://github.com/rspack-contrib/html-rspack-plugin/blob/master/docs/template-option.md).\n\n```js\nplugins: [\n  new HtmlRspackPlugin({\n    title: 'Custom template',\n    // Load a custom template (lodash by default)\n    template: 'index.html',\n  }),\n];\n```\n\n**index.html**\n\n```html\n\u003c!doctype html\u003e\n\u003chtml\u003e\n  \u003chead\u003e\n    \u003cmeta charset=\"utf-8\" /\u003e\n    \u003ctitle\u003e\u003c%= HtmlRspackPlugin.options.title %\u003e\u003c/title\u003e\n  \u003c/head\u003e\n  \u003cbody\u003e\u003c/body\u003e\n\u003c/html\u003e\n```\n\nIf you already have a template loader, you can use it to parse the template. Please note that this will also happen if you specify the html-loader and use `.html` file as template.\n\n**rspack.config.js**\n\n```js\nmodule: {\n  loaders: [\n    { test: /\\.hbs$/, loader: \"handlebars-loader\" }\n  ]\n},\nplugins: [\n  new HtmlRspackPlugin({\n    title: 'Custom template using Handlebars',\n    template: 'index.hbs'\n  })\n]\n```\n\nYou can use the `lodash.template` syntax out of the box. If the `inject` feature doesn't fit your needs and you want full control over the asset placement, you can write your own template.\n\nThe following variables are available in the template by default (you can extend them using the `templateParameters` option):\n\n- `HtmlRspackPlugin`: data specific to this plugin\n\n  - `HtmlRspackPlugin.options`: the options hash that was passed to the plugin. In addition to the options actually used by this plugin, you can use this hash to pass arbitrary data through to your template.\n\n  - `HtmlRspackPlugin.tags`: the prepared `headTags` and `bodyTags` Array to render the `\u003cbase\u003e`, `\u003cmeta\u003e`, `\u003cscript\u003e` and `\u003clink\u003e` tags. Can be used directly in templates and literals. For example:\n\n    ```html\n    \u003chtml\u003e\n      \u003chead\u003e\n        \u003c%= HtmlRspackPlugin.tags.headTags %\u003e\n      \u003c/head\u003e\n      \u003cbody\u003e\n        \u003c%= HtmlRspackPlugin.tags.bodyTags %\u003e\n      \u003c/body\u003e\n    \u003c/html\u003e\n    ```\n\n  - `HtmlRspackPlugin.files`: direct access to the files used during the compilation.\n\n    ```typescript\n    publicPath: string;\n    js: string[];\n    css: string[];\n    favicon?: string;\n    ```\n\n- `webpackConfig`: the Rspack configuration that was used for this compilation. This can be used, for example, to get the `publicPath` (`webpackConfig.output.publicPath`).\n\n- `compilation`: the Rspack [compilation object](https://www.rspack.dev/api/plugin-api/compilation-hooks). This can be used, for example, to get the contents of processed assets and inline them directly in the page, through `compilation.assets[...].source()` (see [the inline template example](examples/inline/template.pug)).\n\nThe template can also be directly inlined directly into the options object.  \n⚠️ **`templateContent` does not allow to use Rspack loaders for your template and will not watch for template file changes**\n\n**rspack.config.js**\n\n```js\nnew HtmlRspackPlugin({\n  templateContent: `\n    \u003chtml\u003e\n      \u003cbody\u003e\n        \u003ch1\u003eHello World\u003c/h1\u003e\n      \u003c/body\u003e\n    \u003c/html\u003e\n  `,\n});\n```\n\nThe `templateContent` can also access all `templateParameters` values.  \n⚠️ **`templateContent` does not allow to use Rspack loaders for your template and will not watch for template file changes**\n\n**rspack.config.js**\n\n```js\nnew HtmlRspackPlugin({\n  inject: false,\n  templateContent: ({ HtmlRspackPlugin }) =\u003e `\n    \u003chtml\u003e\n      \u003chead\u003e\n        ${HtmlRspackPlugin.tags.headTags}\n      \u003c/head\u003e\n      \u003cbody\u003e\n        \u003ch1\u003eHello World\u003c/h1\u003e\n        ${HtmlRspackPlugin.tags.bodyTags}\n      \u003c/body\u003e\n    \u003c/html\u003e\n  `,\n});\n```\n\n### Filtering Chunks\n\nTo include only certain chunks you can limit the chunks being used\n\n**rspack.config.js**\n\n```js\nplugins: [\n  new HtmlRspackPlugin({\n    chunks: ['app'],\n  }),\n];\n```\n\nIt is also possible to exclude certain chunks by setting the `excludeChunks` option\n\n**rspack.config.js**\n\n```js\nplugins: [\n  new HtmlRspackPlugin({\n    excludeChunks: ['dev-helper'],\n  }),\n];\n```\n\n### Minification\n\nYou can use any HTML mimizer to minify the output HTML:\n\n```js\nconst { minify } = require('html-minifier-terser');\n\nplugins: [\n  new HtmlRspackPlugin({\n    minify: (html) =\u003e\n      minify(html, {\n        // options\n      }),\n  }),\n];\n```\n\n### Meta Tags\n\nIf the `meta` option is set the html-rspack-plugin will inject meta tags.  \nFor the default template the html-rspack-plugin will already provide a default for the `viewport` meta tag.\n\nPlease take a look at this well maintained list of almost all [possible meta tags](https://github.com/joshbuchea/HEAD#meta).\n\n#### name/content meta tags\n\nMost meta tags are configured by setting a `name` and a `content` attribute.  \nTo add those use a key/value pair:\n\n**rspack.config.js**\n\n```js\nplugins: [\n  new HtmlRspackPlugin({\n    meta: {\n      viewport: 'width=device-width, initial-scale=1, shrink-to-fit=no',\n      // Will generate: \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1, shrink-to-fit=no\"\u003e\n      'theme-color': '#4285f4',\n      // Will generate: \u003cmeta name=\"theme-color\" content=\"#4285f4\"\u003e\n    },\n  }),\n];\n```\n\n#### Simulate http response headers\n\nThe **http-equiv** attribute is essentially used to simulate a HTTP response header.  \nThis format is supported using an object notation which allows you to add any attribute:\n\n**rspack.config.js**\n\n```js\nplugins: [\n  new HtmlRspackPlugin({\n    meta: {\n      'Content-Security-Policy': {\n        'http-equiv': 'Content-Security-Policy',\n        content: 'default-src https:',\n      },\n      // Will generate: \u003cmeta http-equiv=\"Content-Security-Policy\" content=\"default-src https:\"\u003e\n      // Which equals to the following http header: `Content-Security-Policy: default-src https:`\n      'set-cookie': {\n        'http-equiv': 'set-cookie',\n        content: 'name=value; expires=date; path=url',\n      },\n      // Will generate: \u003cmeta http-equiv=\"set-cookie\" content=\"value; expires=date; path=url\"\u003e\n      // Which equals to the following http header: `set-cookie: value; expires=date; path=url`\n    },\n  }),\n];\n```\n\n### Base Tag\n\nWhen the `base` option is used, html-rspack-plugin will inject a [base tag](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base). By default, a base tag will not be injected.\n\nThe following two are identical and will both insert `\u003cbase href=\"http://example.com/some/page.html\"\u003e`:\n\n```js\nnew HtmlRspackPlugin({\n  base: 'http://example.com/some/page.html',\n});\n```\n\n```js\nnew HtmlRspackPlugin({\n  base: { href: 'http://example.com/some/page.html' },\n});\n```\n\nThe `target` can be specified with the corresponding key:\n\n```js\nnew HtmlRspackPlugin({\n  base: {\n    href: 'http://example.com/some/page.html',\n    target: '_blank',\n  },\n});\n```\n\nwhich will inject the element `\u003cbase href=\"http://example.com/some/page.html\" target=\"_blank\"\u003e`.\n\n### Long Term Caching\n\nFor long term caching add `contenthash` to the filename.\n\n**Example:**\n\n```js\nplugins: [\n  new HtmlRspackPlugin({\n    filename: 'index.[contenthash].html',\n  }),\n];\n```\n\n`contenthash` is the hash of the content of the output file.\n\nRefer Rspack's [Template Strings](https://www.rspack.dev/config/output#template-string) for more details\n\n### Events\n\nTo allow other plugin to alter the HTML this plugin executes tapable hooks.\n\nThe [lib/hooks.js](https://github.com/rspack-contrib/html-rspack-plugin/blob/master/lib/hooks.js) contains all information about which values are passed.\n\n[![Concept flow uml](https://raw.githubusercontent.com/rspack-contrib/html-rspack-plugin/master/flow.png)](https://github.com/rspack-contrib/html-rspack-plugin/blob/master/flow.puml)\n\n#### `beforeAssetTagGeneration` hook\n\n```\n    AsyncSeriesWaterfallHook\u003c{\n      assets: {\n        publicPath: string,\n        js: Array\u003c{string}\u003e,\n        css: Array\u003c{string}\u003e,\n        favicon?: string | undefined\n      },\n      outputName: string,\n      plugin: HtmlRspackPlugin\n    }\u003e\n```\n\n#### `alterAssetTags` hook\n\n```\n    AsyncSeriesWaterfallHook\u003c{\n      assetTags: {\n        scripts: Array\u003cHtmlTagObject\u003e,\n        styles: Array\u003cHtmlTagObject\u003e,\n        meta: Array\u003cHtmlTagObject\u003e,\n      },\n      publicPath: string,\n      outputName: string,\n      plugin: HtmlRspackPlugin\n    }\u003e\n```\n\n#### `alterAssetTagGroups` hook\n\n```\n    AsyncSeriesWaterfallHook\u003c{\n      headTags: Array\u003cHtmlTagObject | HtmlTagObject\u003e,\n      bodyTags: Array\u003cHtmlTagObject | HtmlTagObject\u003e,\n      publicPath: string,\n      outputName: string,\n      plugin: HtmlRspackPlugin\n    }\u003e\n```\n\n#### `afterTemplateExecution` hook\n\n```\n    AsyncSeriesWaterfallHook\u003c{\n      html: string,\n      headTags: Array\u003cHtmlTagObject | HtmlTagObject\u003e,\n      bodyTags: Array\u003cHtmlTagObject | HtmlTagObject\u003e,\n      outputName: string,\n      plugin: HtmlRspackPlugin,\n    }\u003e\n```\n\n#### `beforeEmit` hook\n\n```\n    AsyncSeriesWaterfallHook\u003c{\n      html: string,\n      outputName: string,\n      plugin: HtmlRspackPlugin,\n    }\u003e\n```\n\n#### `afterEmit` hook\n\n```\n    AsyncSeriesWaterfallHook\u003c{\n      outputName: string,\n      plugin: HtmlRspackPlugin\n    }\u003e\n```\n\nExample implementation: [webpack-subresource-integrity](https://www.npmjs.com/package/webpack-subresource-integrity)\n\n**plugin.js**\n\n```js\nconst HtmlRspackPlugin = require('html-rspack-plugin');\n\nclass MyPlugin {\n  apply(compiler) {\n    compiler.hooks.compilation.tap('MyPlugin', (compilation) =\u003e {\n      console.log('The compiler is starting a new compilation...');\n\n      // Static Plugin interface |compilation |HOOK NAME | register listener\n      HtmlRspackPlugin.getCompilationHooks(compilation).beforeEmit.tapAsync(\n        'MyPlugin', // \u003c-- Set a meaningful name here for stacktraces\n        (data, cb) =\u003e {\n          // Manipulate the content\n          data.html += 'The Magic Footer';\n          // Tell Rspack to move on\n          cb(null, data);\n        },\n      );\n    });\n  }\n}\n\nmodule.exports = MyPlugin;\n```\n\n**rspack.config.js**\n\n```js\nplugins: [new MyPlugin({ options: '' })];\n```\n\nNote that the callback must be passed the HtmlRspackPluginData in order to pass this onto any other plugins listening on the same `beforeEmit` event\n\n## Contributors\n\nThis project exists thanks to all the people who contribute.\n\nYou're free to contribute to this project by submitting [issues](https://github.com/rspack-contrib/html-rspack-plugin/issues) and/or [pull requests](https://github.com/rspack-contrib/html-rspack-plugin/pulls). This project is test-driven, so keep in mind that every change and new feature should be covered by tests.\n","funding_links":["https://opencollective.com/html-webpack-plugin"],"categories":["Plugins"],"sub_categories":["Rspack Plugins"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frstackjs%2Fhtml-rspack-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frstackjs%2Fhtml-rspack-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frstackjs%2Fhtml-rspack-plugin/lists"}