From b532304ca84cefff96cda278a2f086b2b59a19f7 Mon Sep 17 00:00:00 2001 From: Daniel Tomlinson Date: Thu, 23 Jul 2020 01:12:17 +0100 Subject: [PATCH] Removing draft flag from buildHugo gulp function --- blog/gulpfile.js/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/blog/gulpfile.js/index.js b/blog/gulpfile.js/index.js index 44e43c4..2de8ccb 100644 --- a/blog/gulpfile.js/index.js +++ b/blog/gulpfile.js/index.js @@ -27,7 +27,8 @@ async function buildSearch(cb) { // Function to build the Hugo project async function buildHugo(cb) { - await execFile("hugo", ["-D", "--minify"]); + // await execFile("hugo", ["-D", "--minify"]); + await execFile("hugo", ["--minify"]); } // Function to minify images