From 796023f3c1e69f71e101c62da593af8cbb1dd150 Mon Sep 17 00:00:00 2001 From: ykohata Date: Tue, 24 Nov 2015 14:18:23 +0900 Subject: [PATCH] Fixed an issue that some fonts aren't loaded properly --- gulp/build.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulp/build.js b/gulp/build.js index 870f890..c77827c 100755 --- a/gulp/build.js +++ b/gulp/build.js @@ -72,7 +72,8 @@ gulp.task('fonts', function () { return gulp.src($.mainBowerFiles()) .pipe($.filter('**/*.{eot,svg,ttf,woff}')) .pipe($.flatten()) - .pipe(gulp.dest(paths.dist + '/fonts/')); + .pipe(gulp.dest(paths.dist + '/fonts/')) + .pipe(gulp.dest(paths.dist + '/styles/fonts/')); }); gulp.task('fontawesome', function () {