website/netlify.toml

16 lines
348 B
TOML
Raw Normal View History

2022-11-27 12:08:57 +00:00
[build]
publish = "public/"
2022-11-28 03:17:59 +00:00
command = "make build"
2022-11-28 02:12:57 +00:00
2022-11-27 10:56:32 +00:00
[context.production.environment]
2022-11-28 03:17:59 +00:00
HUGO_BASE_URL = "$DEPLOY_URL"
2022-11-27 10:56:32 +00:00
2022-11-27 12:08:57 +00:00
[context.branch-deploy.environment]
2022-11-28 03:17:59 +00:00
HUGO_BASE_URL = "$DEPLOY_PRIME_URL"
2022-11-28 02:12:57 +00:00
[context.deploy-preview]
2022-11-28 03:17:59 +00:00
command = "hugo --buildDrafts --buildFuture --buildExpired"
2022-11-27 10:56:32 +00:00
2022-11-27 12:08:57 +00:00
[context.deploy-preview.environment]
2022-11-28 03:17:59 +00:00
HUGO_BASE_URL = "$DEPLOY_PRIME_URL"