Add minification and resource cache clear to build command

This commit is contained in:
budparr 2018-11-25 12:57:31 -05:00 committed by Bjørn Erik Pedersen
parent fd77e8df35
commit cf86ff1c7b

View File

@ -1,6 +1,6 @@
[build] [build]
publish = "public" publish = "public"
command = "hugo" command = "hugo --gc --minify"
[context.production.environment] [context.production.environment]
HUGO_VERSION = "0.51" HUGO_VERSION = "0.51"
@ -8,20 +8,20 @@ HUGO_ENV = "production"
HUGO_ENABLEGITINFO = "true" HUGO_ENABLEGITINFO = "true"
[context.split1] [context.split1]
command = "hugo --enableGitInfo" command = "hugo --gc --minify --enableGitInfo"
[context.split1.environment] [context.split1.environment]
HUGO_VERSION = "0.51" HUGO_VERSION = "0.51"
HUGO_ENV = "production" HUGO_ENV = "production"
[context.deploy-preview] [context.deploy-preview]
command = "hugo --buildFuture -b $DEPLOY_PRIME_URL" command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL"
[context.deploy-preview.environment] [context.deploy-preview.environment]
HUGO_VERSION = "0.51" HUGO_VERSION = "0.51"
[context.branch-deploy] [context.branch-deploy]
command = "hugo -b $DEPLOY_PRIME_URL" command = "hugo --gc --minify -b $DEPLOY_PRIME_URL"
[context.branch-deploy.environment] [context.branch-deploy.environment]
HUGO_VERSION = "0.51" HUGO_VERSION = "0.51"