Stop gulp corrupting all the font files.

I bloody love the javascript ecosystem, I do. Really.

>.<
This commit is contained in:
2024-07-01 19:29:45 +01:00
parent 06fa1a3b1b
commit 8246071b8c

View File

@@ -16,7 +16,7 @@ const con = require('gulp-concat');
const gulpif = require('gulp-if');
function fonts(done) {
return gulp.src('node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.*')
return gulp.src('node_modules/@fortawesome/fontawesome-free/webfonts/fa-solid-900.*', { encoding: false })
.pipe(gulp.dest('pipeline/built_assets/fonts'))
.pipe(browsersync.stream());
}