From 051267e040dfccc91f47b931aca6a83d7a2a3510 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Tue, 30 Jun 2026 14:47:05 -0400 Subject: [PATCH] chore(config): add vercel config file for astro deployment --- 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..5bdb0a1 --- /dev/null +++ b/vercel.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://openapi.vercel.sh/vercel.json", + "framework": "astro", + "installCommand": "bun install", + "buildCommand": "bun run build", + "outputDirectory": "dist" +}