npm.io
1.0.0 • Published 5 years ago

html5-manifest-webpack-plugin

Licence
ISC
Version
1.0.0
Deps
0
Size
2 kB
Vulns
0
Weekly
0
Stars
2

html5-manifest-webpack-plugin

A Webpack plugin for generating a Html5 Manifest Appcache file.

Install

Using npm:

npm install html5-manifest-webpack-plugin --save-dev

Usage

Make your webpack.config.js file like:

const ManifestWebpackPlugin = require('html5-manifest-webpack-plugin');
const options = {
    // ...
 };

module.exports = {
	// an example entry definition
	entry: ['app.js'],
  ...
  plugins: [
    new ManifestWebpackPlugin(options)
  ]
};