Add Netlify deployment configuration

Introduces netlify.toml to specify build environment versions, timezone, publish directory, and custom build command for Hugo site deployment.
This commit is contained in:
2025-09-28 09:35:02 +07:00
parent 410f16c4ac
commit a953b82816
+13
View File
@@ -0,0 +1,13 @@
[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}"
"""