Added back part that got removed that allowed png images

This commit is contained in:
alexjanousekGSA
2024-08-13 14:15:02 -05:00
parent 556e381677
commit 3397b0c380
+2 -1
View File
@@ -99,10 +99,11 @@ const copyGtmHead = () => {
// Task to copy images // Task to copy images
const copyImages = () => { const copyImages = () => {
return src(paths.src + 'images/**/*') return src(paths.src + 'images/**/*', { encoding: false })
.pipe(dest(paths.dist + 'images/')); .pipe(dest(paths.dist + 'images/'));
}; };
// Configure USWDS paths // Configure USWDS paths
uswds.settings.version = 3; uswds.settings.version = 3;
uswds.paths.dist.css = paths.dist + 'css'; uswds.paths.dist.css = paths.dist + 'css';