chore: add vercel.json and Node engine pin for Vercel deploy

This commit is contained in:
MR CYBER
2026-07-18 05:52:25 -07:00
parent 03f3b8c209
commit 78f2cbd154
2 changed files with 15 additions and 0 deletions
+3
View File
@@ -8,6 +8,9 @@
"start": "next start",
"lint": "eslint"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.6.1",
+12
View File
@@ -0,0 +1,12 @@
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"framework": "nextjs",
"buildCommand": "next build",
"installCommand": "npm install",
"nodeVersion": "20.x",
"git": {
"deploymentEnabled": {
"master": true
}
}
}