chore: add vercel config

This commit is contained in:
Lewis Wynne 2026-01-23 04:49:02 +00:00
parent d7b1dd365e
commit 1a608358d1
2 changed files with 6 additions and 0 deletions

1
.gitignore vendored
View file

@ -3,3 +3,4 @@ dist
.astro .astro
.vercel .vercel
pnpm-lock.yaml pnpm-lock.yaml
apps/blog/.env

5
apps/blog/vercel.json Normal file
View file

@ -0,0 +1,5 @@
{
"buildCommand": "cd apps/blog && npm install && npx astro build --remote",
"outputDirectory": "apps/blog/dist",
"installCommand": "echo 'skipping root install'"
}