Skip to content

Commit 0bfb3bf

Browse files
author
Splitter
committed
fix: rare bug causing site_footer.html error
1 parent 85408f1 commit 0bfb3bf

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

netlify.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
[build]
22
command = """
33
set -e
4-
echo "=== Starting Documentation build process ==="
4+
echo "=== Starting Blog build process ==="
55
echo "Node version: $(node --version)"
66
echo "pnpm version: $(pnpm --version)"
77
echo "Hugo version: $(hugo version)"
8+
echo "Go version: $(go version || echo 'Go not available')"
89
910
echo "=== Installing dependencies ==="
1011
pnpm install --verbose
1112
1213
echo "=== Running Hugo build ==="
13-
hugo --gc --minify -b $URL --logLevel debug --printI18nWarnings --printPathWarnings --printUnusedTemplates
14+
hugo --gc --minify -b $URL --logLevel debug --printI18nWarnings --printPathWarnings
1415
1516
echo "=== Running Pagefind indexing ==="
1617
pnpm dlx pagefind --source 'public' --verbose
@@ -21,7 +22,8 @@
2122

2223
[build.environment]
2324
HUGO_VERSION = "0.149.1"
24-
NODE_VERSION = "20.0.0"
25+
GO_VERSION = "1.21.5"
26+
NODE_VERSION = "22"
2527
HUGO_ENABLEGITINFO = "true"
2628
HUGO_LOG_I18N_WARNINGS = "true"
2729
HUGO_LOG_WARNINGS = "true"

0 commit comments

Comments
 (0)