refactor: split vercel.json into per-app configs

This commit is contained in:
Lewis Wynne 2026-01-29 02:51:33 +00:00
parent c85e2e2357
commit bd9ec4e248
2 changed files with 6 additions and 1 deletions

5
penfield/vercel.json Normal file
View file

@ -0,0 +1,5 @@
{
"installCommand": "pnpm install",
"buildCommand": "pnpm --filter @ily/penfield build",
"outputDirectory": "dist"
}

View file

@ -1,5 +1,5 @@
{
"installCommand": "git config --global url.\"https://${GITHUB_ACCESS_TOKEN}@github.com/\".insteadOf \"git@github.com:\" && git submodule update --init --recursive && pnpm install",
"buildCommand": "pnpm --filter @ily/www build",
"outputDirectory": "apps/www/dist"
"outputDirectory": "dist"
}