From c6aba6569a259e836e1452d7390c10336e421a8b Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Wed, 6 Feb 2019 15:23:55 +0000 Subject: [PATCH] Move images into place before processing SASS As part of the SASS processing we base64 and embed every image found in the SASS files. In order to do this the images need to be in place beforehand. This was causing a bug where the first deploy of an image would cause it to 404. --- gulpfile.babel.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.babel.js b/gulpfile.babel.js index 445bc988f..691564768 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -164,9 +164,9 @@ gulp.task('default', 'copy:govuk_template:css', 'copy:govuk_template:js', 'copy:govuk_template:error_page', + 'images', 'javascripts', - 'sass', - 'images' + 'sass' ] );