7 lines
145 B
JavaScript
7 lines
145 B
JavaScript
|
gulp.task('fonts', function () {
|
||
|
app.copy(
|
||
|
config.bowerDir + '/font-awesome/fonts/*',
|
||
|
config.outputDir + '/fonts'
|
||
|
);
|
||
|
});
|