summaryrefslogtreecommitdiffstats
path: root/html/gulpfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'html/gulpfile.js')
-rw-r--r--html/gulpfile.js6
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(