From cf86ff1c7baaf58821f87518552f62984b7fa219 Mon Sep 17 00:00:00 2001 From: budparr Date: Sun, 25 Nov 2018 12:57:31 -0500 Subject: [PATCH] Add minification and resource cache clear to build command --- netlify.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/netlify.toml b/netlify.toml index 7ba6a6231..d21bc956d 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,6 +1,6 @@ [build] publish = "public" -command = "hugo" +command = "hugo --gc --minify" [context.production.environment] HUGO_VERSION = "0.51" @@ -8,20 +8,20 @@ HUGO_ENV = "production" HUGO_ENABLEGITINFO = "true" [context.split1] -command = "hugo --enableGitInfo" +command = "hugo --gc --minify --enableGitInfo" [context.split1.environment] HUGO_VERSION = "0.51" HUGO_ENV = "production" [context.deploy-preview] -command = "hugo --buildFuture -b $DEPLOY_PRIME_URL" +command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL" [context.deploy-preview.environment] HUGO_VERSION = "0.51" [context.branch-deploy] -command = "hugo -b $DEPLOY_PRIME_URL" +command = "hugo --gc --minify -b $DEPLOY_PRIME_URL" [context.branch-deploy.environment] HUGO_VERSION = "0.51"