mirror of
https://github.com/tiennm99/miti99.git
synced 2026-09-17 06:24:57 +00:00
Introduces netlify.toml to specify build environment versions, timezone, publish directory, and custom build command for Hugo site deployment.
14 lines
273 B
TOML
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}"
|
|
"""
|