pluginHTML
Rspack plugin that adds emit of HTML-file based.
It is just a wrapper of HtmlRspackPlugin with some useful defaults.
rspack.config.js
import { pluginHTML } from '@krutoo/utils/rspack';
export default {
plugins: [
// just use plugin function
pluginHTML(),
],
};