From e38203d751c110eb3e8b6cfe02e2c20f4880d9ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emanuel=20Sch=C3=BCtze?= Date: Wed, 14 Dec 2016 12:32:02 +0100 Subject: [PATCH] Readded woff2 to gulp's font filter. Chrome and Firefox loads woff2 of fontawesome. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index ef19964d1..a051fc789 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -97,7 +97,7 @@ gulp.task('css-libs', function () { // Catches all font files from all bower components. gulp.task('fonts-libs', function() { return gulp.src(mainBowerFiles({ - filter: /\.woff$/ + filter: /\.(woff)|(woff2)$/ })) .pipe(gulp.dest(path.join(output_directory, 'fonts'))); });