chore: add Vercel config for tutorial deployment

This commit is contained in:
Ajax Davis 2025-12-29 00:34:00 +10:00
parent 29e1b9d9ac
commit a57af97585
3 changed files with 14 additions and 0 deletions

7
.vercelignore Normal file
View file

@ -0,0 +1,7 @@
node_modules
.turbo
.next
dist
*.log
.env*
!.env.example

1
apps/tutorial/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
.vercel

View file

@ -0,0 +1,6 @@
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"framework": "nextjs",
"buildCommand": "pnpm --filter=@tpmjs/tutorial... build",
"installCommand": "pnpm install"
}