html5-manifest-webpack-plugin
v1.0.0
Published
webpack plugin for generating html5 manifest file.
Downloads
1
Readme
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)
]
};