website/netlify.toml

20 lines
485 B
TOML
Raw Normal View History

2022-11-27 12:08:57 +00:00
[build]
publish = "public/"
2022-11-28 01:36:38 +00:00
command = "bundle && hugo --gc --minify"
2022-11-27 12:08:57 +00:00
2022-11-27 10:56:32 +00:00
[context.production.environment]
HUGO_VERSION = "0.107.0"
HUGO_ENV = "production"
HUGO_ENABLEGITINFO = "true"
2022-11-27 10:56:32 +00:00
HUGO_BASE_URL = "$DEPLOY_URL"
2022-11-27 12:08:57 +00:00
[context.branch-deploy.environment]
HUGO_VERSION = "0.107.0"
2022-11-27 12:08:57 +00:00
HUGO_BASE_URL = "$DEPLOY_PRIME_URL"
2022-11-27 10:56:32 +00:00
2022-11-27 12:08:57 +00:00
[context.deploy-preview.environment]
HUGO_VERSION = "0.107.0"
[context.deploy-preview]
command = "hugo --buildDrafts --buildFuture --buildExpired --baseURL $DEPLOY_PRIME_URL"