Skip to content

Commit

Permalink
Stop gulp corrupting all the font files.
Browse files Browse the repository at this point in the history
I bloody love the javascript ecosystem, I do. Really.

>.<
  • Loading branch information
FreneticScribbler committed Jul 1, 2024
1 parent 06fa1a3 commit 8246071
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}
Expand Down

0 comments on commit 8246071

Please sign in to comment.