Merge pull request #1839 from GSA/bugfix/images

Added back part that got removed that allowed png images
This commit is contained in:
Carlo Costino
2024-08-13 16:19:04 -04:00
committed by GitHub

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';