Skip to content

Commit 45b3dcf

Browse files
committed
fix: add Vercel configuration for proper Next.js deployment
Added vercel.json to explicitly configure: - Framework as nextjs - Build command with proper pnpm script - Output directory as .next This ensures Vercel correctly deploys the Next.js application instead of serving static files only.
1 parent 84130ea commit 45b3dcf

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

vercel.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"framework": "nextjs",
3+
"buildCommand": "pnpm run build",
4+
"installCommand": "pnpm install",
5+
"outputDirectory": ".next"
6+
}

0 commit comments

Comments
 (0)