adding woff2 font type support for gulp copy-assets task

This commit is contained in:
koenemann 2016-01-04 14:35:52 +01:00
parent ad9e3ae09b
commit 009543d68c
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ gulp.task('copy-assets', function() {
.pipe(gulp.dest('./js'));
gulp.src(basePaths.bower + 'bootstrap-sass/assets/stylesheets/**/*.scss')
.pipe(gulp.dest('./sass/bootstrap-sass'));
gulp.src(basePaths.bower + 'bootstrap-sass/assets/fonts/bootstrap/*.{ttf,woff,eof,svg}')
gulp.src(basePaths.bower + 'bootstrap-sass/assets/fonts/bootstrap/*.{ttf,woff,woff2,eof,svg}')
.pipe(gulp.dest('./fonts'));
gulp.src(basePaths.bower + 'fontawesome/fonts/**/*.{ttf,woff,eof,svg}')
.pipe(gulp.dest('./fonts'));