【笔记】Gulp的GulpHTMLMin插件

前言

Gulp通过GulpHTMLMin插件实现HTML代码压缩

下载依赖

1
npm install -D gulp-htmlmin

修改配置文件

collapseWhitespace:折叠空白字符

gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
const gulp = require("gulp");
const htmlmin = require("gulp-htmlmin");

function fn() {
return gulp.src("./src/**/*.html")
.pipe(htmlmin({ collapseWhitespace: true }));
.pipe(gulp.dest("./dist"));
}

module.exports = {
fn
}

完成