rollup-plugin-html-template
v1.0.3
Published
Simple rollup plugin to generate index.html & auto inject outputfile for webapp build
Downloads
11
Readme
Install
npm i rollup-plugin-html-template
Demo
import html from 'rollup-plugin-html-template'
export default {
input: ...,
output: {
...
},
plugin: [
html({
template: 'index.html' // ignore will generate a default index.html
})
]
}