From e05bd4d0d52768a92547e19e6ee764a54175ec4e Mon Sep 17 00:00:00 2001 From: FabioL <1647128+loviuz@users.noreply.github.com> Date: Mon, 10 Jun 2024 12:03:44 +0200 Subject: [PATCH] Fix per problemi di compressione JS --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index e625787a1..af88e6e84 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -136,7 +136,7 @@ const JS = gulp.parallel(() => { }) .pipe(babel(config.babelOptions)) .pipe(concat('app.min.js')) - .pipe(gulpIf(!config.debug, minifyJS())) + .pipe(gulpIf(!config.debug, minifyJS({compress:false}))) .pipe(gulp.dest(config.production + '/' + config.paths.js)); }, srcJS);