From b18edcd23e52d322a60370dac2ee88130c4224ca Mon Sep 17 00:00:00 2001 From: tcbutler320 Date: Thu, 3 Jun 2021 18:15:42 -0400 Subject: [PATCH] add dot prefix in gulp build --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 380e78564..abdbb2c35 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -188,7 +188,7 @@ task("sass", function () { }); task("static", function () { - return src("./static/**/*").pipe(dest("./dist/")); + return src("./static/**/*", { dot: true }).pipe(dest("./dist/")); }); //copies refactored js files to dist/gen so that they can be required by dist/gen/index.js