Use only woff and woff2

This commit is contained in:
Alex Ling
2021-02-11 08:40:24 +00:00
parent 933617503e
commit 154d85e197
3 changed files with 7 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ gulp.task('copy-img', () => {
});
gulp.task('copy-font', () => {
return gulp.src('node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.*')
return gulp.src('node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff**')
.pipe(gulp.dest('public/webfonts'));
});