Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/l-chris/html-webpack-enhance-plugin


https://github.com/l-chris/html-webpack-enhance-plugin

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# html-webpack-enhance-plugin
enhance html-webpack-plugin features

## Install
```
// v1 support webpack3
// v2 support webpack4
npm i html-webpack-enhance-plugin -D
yarn add html-webpack-enhance-plugin -D
```

## ✨ Features:

- override publicPath options in webpack config

## Usage

**webpack.config.js**

```
const HtmlWebpackPlugin = require('html-webpack-plugin')
const HtmlWebpackEnhancePlugin = require('html-webpack-enhance-plugin')

module.exports = {
plugins: [
new HtmlWebpackPlugin(),
new HtmlWebpackEnhancePlugin({
publicPath: ''
})
]
}
```