feat: add vercel.json configuration file (#169)

* feat: add vercel.json configuration file

* fix: update vercel.json with monorepo build commands and SPA rewrite

* fix: set rootDirectory, remove SPA rewrite (static export handles routing)

* fix: remove invalid rootDirectory from vercel.json (use Project Settings instead)
This commit is contained in:
Davide Ladisa 2026-04-30 16:54:47 +02:00 committed by GitHub
parent 89722379c5
commit 2f8d998ae8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

7
vercel.json Normal file
View file

@ -0,0 +1,7 @@
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"buildCommand": "pnpm install && pnpm --filter @open-design/web build",
"installCommand": "pnpm install",
"outputDirectory": "apps/web/out",
"framework": null
}