1.0.0 • Published 3 years ago

html5-manifest-webpack-plugin v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

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)
  ]
};