We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ed3127 commit 87b17fbCopy full SHA for 87b17fb
build.sh
@@ -0,0 +1,14 @@
1
+#!/bin/bash
2
+
3
+# Install Hugo
4
+echo "Installing Hugo Extended v0.150.1..."
5
+wget https://github.com/gohugoio/hugo/releases/download/v0.150.1/hugo_extended_0.150.1_Linux-64bit.tar.gz
6
+tar -xzf hugo_extended_0.150.1_Linux-64bit.tar.gz
7
+chmod +x hugo
8
9
+# Build the site
10
+echo "Building Hugo site..."
11
+./hugo --gc --minify
12
13
+echo "Build completed!"
14
vercel.json
@@ -0,0 +1,5 @@
+{
+ "buildCommand": "bash build.sh",
+ "outputDirectory": "public",
+ "installCommand": "pnpm install"
+}
0 commit comments