Gulp(二)

来源:互联网 发布:淘宝搜索权重模型 编辑:程序博客网 时间:2024/06/06 00:22
     ### html压缩
#### html 处理 常用插件
htmlmin 代替 minify-html  `var options = {            removeComments: true,// 清除HTML注释            collapseWhitespace: true,// 压缩HTML            collapseBooleanAttributes: true,// 省略布尔属性的值 <input checked="true"/> ==> <input />            removeScriptTypeAttributes: true,// 删除<script>的type="text/javascript"            removeStyleLinkTypeAttributes: true,// 删除<style>和<link>的type="text/css"            minifyJS: true,// 压缩页面JS            minifyCSS: true// 压缩页面CSS        };`        This is [gulp-htmlmin](https://github.com/kangax/html-minifier) inline link.### gulp-html-replace> 参考管理后台 `options: {    prefix: '@@' // 前缀 默认就是@@    suffix: ''  // 后缀, 默认为空    basepath: '@file' // 默认}`
原创粉丝点击