congo/netlify.toml

25 lines
583 B
TOML
Raw Normal View History

2021-08-24 07:35:26 +00:00
[build]
command = "cd exampleSite && hugo --gc --minify -b $URL"
2021-08-25 04:15:04 +00:00
publish = "exampleSite/public"
2021-08-24 07:35:26 +00:00
[build.environment]
HUGO_THEMESDIR = "../.."
HUGO_THEME = "repo"
2021-08-25 22:57:05 +00:00
TZ = "Australia/Melbourne"
2021-08-24 07:35:26 +00:00
[context.production.environment]
2021-08-25 22:57:05 +00:00
HUGO_VERSION = "0.87"
2021-08-24 07:46:42 +00:00
HUGO_ENV = "production"
2021-08-24 07:35:26 +00:00
2021-08-24 07:56:26 +00:00
[context.deploy-preview]
2021-08-25 06:04:43 +00:00
command = "cd exampleSite && hugo --gc --minify -b $DEPLOY_PRIME_URL"
2021-08-24 07:56:26 +00:00
2021-08-24 07:35:26 +00:00
[context.deploy-preview.environment]
2021-08-25 22:57:05 +00:00
HUGO_VERSION = "0.87"
2021-08-24 07:56:26 +00:00
[context.branch-deploy]
2021-08-25 06:04:43 +00:00
command = "cd exampleSite && hugo --gc --minify -b $DEPLOY_PRIME_URL"
2021-08-24 07:56:26 +00:00
[context.branch-deploy.environment]
2021-08-25 22:57:05 +00:00
HUGO_VERSION = "0.87"