From 6fc428363a5a5fdad6fb379478debdbe4deb2f05 Mon Sep 17 00:00:00 2001 From: alexjanousekGSA Date: Wed, 24 Jul 2024 12:39:04 -0600 Subject: [PATCH] Added line to allow encoding which prevent png --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index f80eee6e0..3e7dee06e 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -149,7 +149,7 @@ const images = () => { paths.govuk_frontend + 'assets/images/**/*', paths.src + 'images/**/*', paths.src + 'img/**/*', - ]) + ], {encoding: false}) .pipe(dest(paths.dist + 'images/')) };