mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-23 07:46:23 -04:00
Merge pull request #1839 from GSA/bugfix/images
Added back part that got removed that allowed png images
This commit is contained in:
@@ -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';
|
||||||
|
|||||||
Reference in New Issue
Block a user