diff --git a/.gitignore b/.gitignore index 6e231d8..12ac683 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,4 @@ Thumbs.db # Coverage coverage/ lcov.info +.vercel diff --git a/apps/web/.gitignore b/apps/web/.gitignore index 7d9c390..f00930c 100644 --- a/apps/web/.gitignore +++ b/apps/web/.gitignore @@ -6,3 +6,4 @@ out .env.*.local *.tsbuildinfo next-env.d.ts +.vercel diff --git a/apps/web/vercel.json b/apps/web/vercel.json new file mode 100644 index 0000000..9960ffe --- /dev/null +++ b/apps/web/vercel.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://openapi.vercel.sh/vercel.json", + "framework": "nextjs", + "buildCommand": "cd ../.. && pnpm --filter @prism/web build", + "installCommand": "cd ../.. && pnpm install --frozen-lockfile", + "outputDirectory": ".next" +}