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-reload-plugin

reload your browser when your html changes, works with html-webpack-plugin
https://github.com/l-chris/html-webpack-reload-plugin

Last synced: about 2 months ago
JSON representation

reload your browser when your html changes, works with html-webpack-plugin

Awesome Lists containing this project

README

        

# html-webpack-reload-plugin
Automatically refresh your browser whenever you make changes to templates consumed by html-webpack-plugin.
It should only be used in development.
v1 support webpack3
v2 support webpack4
Inspire by reload-html-webpack-plugin.

## Install
```
npm i html-webpack-reload-plugin -D
yarn add html-webpack-reload-plugin -D
```

## Usage

**webpack.config.js**

```
const HtmlWebpackPlugin = require('html-webpack-plugin')
const HtmlWebpackReloadPlugin = require('html-webpack-reload-plugin')

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