still copy fonts to static

This commit is contained in:
stvnrlly
2022-12-14 13:30:46 -05:00
parent 8a415bc31b
commit 7391b9d17e

View File

@@ -50,6 +50,10 @@ const copy = {
return src(paths.src + 'error_pages/**/*')
.pipe(dest(paths.dist + 'error_pages/'))
},
fonts: () => {
return src(paths.src + 'fonts/**/*')
.pipe(dest(paths.dist + 'fonts/'));
}
};
@@ -225,6 +229,7 @@ const lint = {
// Default: compile everything
const defaultTask = parallel(
parallel(
copy.fonts,
images
),
series(