-
rollup-plugin-html-literals是一个旨在最小化html模板文字的Rollup插件
资源介绍
rollup-plugin-html-literals
一个Rollup插件以最小化html模板文字
用法
import template from "rollup-plugin-html-literals" ;
export default {
input : "index.js" ,
output : { file : "dist/index.js" , format : "esm" } ,
plugins : [ template ( ) ]
} ;
这将最小化所有带有html标记的模板文字。
注意:应在转译之前使用此插件。
选项
包括
类型: array或string默认值: []
缩小时要包含的单个文件或文件数组。
排除
类型: array或string默认值: []
缩小时要排除的单个文件或文件数组。
failOnError,
类型: boo