adding woff2 font type support for gulp copy-assets task
This commit is contained in:
parent
ad9e3ae09b
commit
009543d68c
|
@ -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'));
|
||||
|
|
Reference in New Issue