From 315931605abc8169adf66513429afed67dc7fd90 Mon Sep 17 00:00:00 2001 From: jimmoffet Date: Wed, 3 Aug 2022 17:16:35 -0700 Subject: [PATCH] freeze assets --- gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 90e0104ca..43229e340 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -231,11 +231,11 @@ const sass = () => { const images = () => { return src([ - // paths.toolkit + 'images/**/*', - // paths.govuk_frontend + 'assets/images/**/*' + paths.toolkit + 'images/**/*', + paths.govuk_frontend + 'assets/images/**/*', paths.src + 'images/**/*', paths.template + 'assets/images/**/*' - + ]) .pipe(dest(paths.dist + 'images/')) };