We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 814ceae commit d527415Copy full SHA for d527415
gulpfile.js
@@ -13,8 +13,9 @@ const WEBFONTS_SRC = "./fonts/webfonts";
13
const WEBFONTS_DEST = "./site/assets/fonts";
14
15
function copyWebfonts() {
16
- return src(`${WEBFONTS_SRC}/**/**`)
17
- .pipe(dest(WEBFONTS_DEST));
+ return src(`${WEBFONTS_SRC}/**/**`, {
+ encoding: false,
18
+ }).pipe(dest(WEBFONTS_DEST));
19
}
20
21
function watchWebfonts() {
0 commit comments