Files
web/themes/minimal-black/netlify.toml
2026-03-23 18:35:59 +01:00

30 lines
1.3 KiB
TOML

[build]
publish = "public"
command = "mkdir -p hugo-minimal-black && rsync -av --exclude='hugo-minimal-black' --exclude='.git' --exclude='public' . ./hugo-minimal-black/ && cd hugo-minimal-black/exampleSite && hugo --gc --minify --themesDir ../.. --theme hugo-minimal-black && mv public ../../public"
[build.environment]
HUGO_VERSION = "0.152.2"
HUGO_ENV = "production"
HUGO_ENABLEGITINFO = "true"
[context.production.environment]
HUGO_VERSION = "0.152.2"
HUGO_ENV = "production"
[context.deploy-preview]
command = "mkdir -p hugo-minimal-black && rsync -av --exclude='hugo-minimal-black' --exclude='.git' --exclude='public' . ./hugo-minimal-black/ && cd hugo-minimal-black/exampleSite && hugo --gc --minify --buildFuture --themesDir ../.. --theme hugo-minimal-black && mv public ../../public"
[context.deploy-preview.environment]
HUGO_VERSION = "0.152.2"
[context.branch-deploy]
command = "mkdir -p hugo-minimal-black && rsync -av --exclude='hugo-minimal-black' --exclude='.git' --exclude='public' . ./hugo-minimal-black/ && cd hugo-minimal-black/exampleSite && hugo --themesDir ../.. --theme hugo-minimal-black && mv public ../../public"
[context.branch-deploy.environment]
HUGO_VERSION = "0.152.2"
[[redirects]]
from = "/*"
to = "/404.html"
status = 404