From a8d120221376309a1c2931dd221d37338fb77ade Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E7=BF=A9?= Date: Wed, 13 Mar 2024 15:23:59 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=BC=95=E5=8F=B7=E4=BF=9D=E7=95=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index ebf7fe3..06ee8e1 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -42,7 +42,7 @@ gulp.task("html", function () { return gulp .src("src/*.html") .pipe(fileinclude()) //替换头部底部 - .pipe(minifyHtml()) //执行压缩 + .pipe(minifyHtml({quotes:true})) //执行压缩 .pipe(gulp.dest("dist")) .pipe(connect.reload()); });