mirror of
https://github.com/Xevion/old.xevion.github.io.git
synced 2025-12-06 09:15:37 -06:00
12 lines
198 B
JavaScript
12 lines
198 B
JavaScript
const fontsPath = 'fonts/**/*';
|
|
const destPath = '_site/fonts';
|
|
|
|
module.exports = gulp => {
|
|
|
|
gulp.task('fonts', () => {
|
|
return gulp.src( fontsPath )
|
|
.pipe(gulp.dest( destPath ));
|
|
});
|
|
|
|
}
|