Files
miti99/netlify.toml
T
tiennm99 a953b82816 Add Netlify deployment configuration
Introduces netlify.toml to specify build environment versions, timezone, publish directory, and custom build command for Hugo site deployment.
2025-09-28 09:35:02 +07:00

14 lines
273 B
TOML

[build.environment]
DART_SASS_VERSION = "1.83.0"
GO_VERSION = "1.23.4"
HUGO_VERSION = "0.140.2"
NODE_VERSION = "22.12.0"
TZ = "Asia/Ho_Chi_Minh"
[build]
publish = "public"
command = """\
git config core.quotepath false && \
hugo --gc --minify --baseURL "${URL}"
"""