From 61ddff669ffa0281458e5ec98dcdf8ab9b5079bc Mon Sep 17 00:00:00 2001 From: Max Ghenis Date: Fri, 8 May 2026 20:10:03 -0500 Subject: [PATCH] Wire repo-root vercel.json so policybench-site auto-deploys from main The Vercel project policy-engine/policybench-site (which serves policybench.org) has rootDirectory unset, so git auto-deploys try to build from the repo root and find no Next.js app. This vercel.json points the build at app/. Drops the legacy app and policybench projects out of the picture. --- vercel.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 vercel.json diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..c530bdb --- /dev/null +++ b/vercel.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://openapi.vercel.sh/vercel.json", + "framework": "nextjs", + "buildCommand": "cd app && bun install --frozen-lockfile && bun run build", + "installCommand": "echo 'deferred to buildCommand'", + "outputDirectory": "app/.next" +}