From 451520af975c978c8ffaa1d9a0959b50c1b8e294 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 04:54:50 +0200 Subject: Adding upstream version 1.7.7. Signed-off-by: Daniel Baumann --- html/gulpfile.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'html/gulpfile.js') diff --git a/html/gulpfile.js b/html/gulpfile.js index b1a4aad..54f583f 100644 --- a/html/gulpfile.js +++ b/html/gulpfile.js @@ -37,7 +37,11 @@ task('clean', () => { }); task('inline', () => { - return src('dist/index.html').pipe(inlineSource()).pipe(rename('inline.html')).pipe(dest('dist/')); + const options = { + compress: false, + }; + + return src('dist/index.html').pipe(inlineSource(options)).pipe(rename('inline.html')).pipe(dest('dist/')); }); task( -- cgit v1.2.3