Skip to content

Commit c8f1a64

Browse files
authored
Merge pull request #99 from line-o/fix/icons
2 parents 4bc59aa + 4ed9d5e commit c8f1a64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ exports.minify = minifyEs;
169169

170170
// copy fonts
171171
function copyFonts() {
172-
return src(paths.fonts.input).pipe(
172+
return src(paths.fonts.input, {encoding: false}).pipe(
173173
dest(paths.fonts.output)
174174
);
175175
}
@@ -186,7 +186,7 @@ function copyVendorStyles() {
186186

187187
// copy vendor fonts
188188
function copyVendorFonts() {
189-
return src(paths.vendor.fonts).pipe(
189+
return src(paths.vendor.fonts, {encoding: false}).pipe(
190190
dest(paths.fonts.output)
191191
);
192192
}

0 commit comments

Comments
 (0)