索引html
生成自定义的 index.html 文件
安装
$ npm install indexhtml
用法
var indexhtml = require ( 'indexhtml' )
indexhtml ( {
title : 'hello world' ,
js : 'bundle.js' , // or [..] is ok
css : [ 'default.css' , 'pretty.css' ] , // or 'single.css' is ok
meta : [
{ name : 'viewport' , content : 'width=device-width, initial-scale=1' }
] ,
content : '
yo
'
} )
将输出:
<!DOCTYPE html >
< html
1