From bd9ec4e2489fd59ce6741e24bd82cf73e8552ae9 Mon Sep 17 00:00:00 2001 From: lew Date: Thu, 29 Jan 2026 02:51:33 +0000 Subject: [PATCH] refactor: split vercel.json into per-app configs --- penfield/vercel.json | 5 +++++ vercel.json => www/vercel.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 penfield/vercel.json rename vercel.json => www/vercel.json (86%) diff --git a/penfield/vercel.json b/penfield/vercel.json new file mode 100644 index 0000000..b79cfde --- /dev/null +++ b/penfield/vercel.json @@ -0,0 +1,5 @@ +{ + "installCommand": "pnpm install", + "buildCommand": "pnpm --filter @ily/penfield build", + "outputDirectory": "dist" +} diff --git a/vercel.json b/www/vercel.json similarity index 86% rename from vercel.json rename to www/vercel.json index 32928ef..d07d69e 100644 --- a/vercel.json +++ b/www/vercel.json @@ -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" }