mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-29 09:42:38 +00:00
Add minification and resource cache clear to build command
This commit is contained in:
committed by
Bjørn Erik Pedersen
parent
fd77e8df35
commit
cf86ff1c7b
+4
-4
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user