diff --git a/gulpfile.js b/gulpfile.js index 427b3f5b9..c1f2dea3b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -13,8 +13,9 @@ const WEBFONTS_SRC = "./fonts/webfonts"; const WEBFONTS_DEST = "./site/assets/fonts"; function copyWebfonts() { - return src(`${WEBFONTS_SRC}/**/**`) - .pipe(dest(WEBFONTS_DEST)); + return src(`${WEBFONTS_SRC}/**/**`, { + encoding: false, + }).pipe(dest(WEBFONTS_DEST)); } function watchWebfonts() {