npm.io
0.1.4 • Published 6 years ago

html-webpack-exclude-empty-assets-plugin

Licence
MIT
Version
0.1.4
Deps
0
Size
7 kB
Vulns
0
Weekly
0
Stars
7

HtmlWebpackExcludeEmptyAssetsPlugin

This will prevent the HtmlWebpackPlugin from adding empty assets into the html.

Usage

const HtmlWebpackExcludeEmptyAssetsPlugin = require('html-webpack-exclude-empty-assets-plugin');

module.exports = {
  // ...
  plugins: [
    // ...
    new HtmlWebpackPlugin(),
    new HtmlWebpackExcludeEmptyAssetsPlugin(),
    // ...
  ]
};

All Configuration Options

The HtmlWebpackExcludeEmptyAssetsPlugin accepts an object of options with the following attributes:

new HtmlWebpackExcludeEmptyAssetsPlugin({,
  minBytes: 1024
})
  • minBytes - the minimum byte size a file has to meet to not be deleted. Defaults to 1024 bytes.

Keywords