From a547444d841e993744720eff0267ea5f71eb4ce6 Mon Sep 17 00:00:00 2001 From: Edin Dazdarevic Date: Mon, 9 Oct 2017 09:55:59 +0200 Subject: [PATCH] Copy favicon too --- Gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gulpfile.js b/Gulpfile.js index 6e31497..9728d9e 100644 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -41,7 +41,7 @@ gulp.task('copy:fonts', () => { }) gulp.task('copy:html', () => { - return gulp.src('index.html') + return gulp.src(['index.html', 'favicon.ico']) .pipe(gulp.dest('dist')) })