diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 02:54:50 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 02:54:50 +0000 |
commit | 451520af975c978c8ffaa1d9a0959b50c1b8e294 (patch) | |
tree | c2abdd80665f8494280a65417a9c21156ff41125 /html/gulpfile.js | |
parent | Adding upstream version 1.7.4. (diff) | |
download | ttyd-451520af975c978c8ffaa1d9a0959b50c1b8e294.tar.xz ttyd-451520af975c978c8ffaa1d9a0959b50c1b8e294.zip |
Adding upstream version 1.7.7.upstream/1.7.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'html/gulpfile.js')
-rw-r--r-- | html/gulpfile.js | 6 |
1 files changed, 5 insertions, 1 deletions
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( |