From 3397b0c3804c393134e67a23de8a3b61dc3d1142 Mon Sep 17 00:00:00 2001 From: alexjanousekGSA Date: Tue, 13 Aug 2024 14:15:02 -0500 Subject: [PATCH] Added back part that got removed that allowed png images --- gulpfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index b441f4c2d..d4d6ac81f 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -99,10 +99,11 @@ const copyGtmHead = () => { // Task to copy images const copyImages = () => { - return src(paths.src + 'images/**/*') + return src(paths.src + 'images/**/*', { encoding: false }) .pipe(dest(paths.dist + 'images/')); }; + // Configure USWDS paths uswds.settings.version = 3; uswds.paths.dist.css = paths.dist + 'css';