From 75ed3aebaba576e7d55ef545f9583b498ad994c6 Mon Sep 17 00:00:00 2001 From: Harry Phan Date: Sun, 26 Jul 2026 07:24:38 +0700 Subject: [PATCH] chore: disable Vercel deployments (deploy via Railway) --- vercel.json | 28 +++------------------------- 1 file changed, 3 insertions(+), 25 deletions(-) diff --git a/vercel.json b/vercel.json index 0213656..8705660 100644 --- a/vercel.json +++ b/vercel.json @@ -1,28 +1,6 @@ { "$schema": "https://openapi.vercel.sh/vercel.json", - "installCommand": "npm install", - "buildCommand": "npm run build", - "outputDirectory": "apps/web/dist", - "rewrites": [ - { - "source": "/blog", - "destination": "/blog/index.html" - }, - { - "source": "/changelog", - "destination": "/blog/changelog/index.html" - }, - { - "source": "/changelog/:path*", - "destination": "/blog/changelog/:path*" - }, - { - "source": "/blog/:path*", - "destination": "/blog/:path*" - }, - { - "source": "/:path*", - "destination": "/index.html" - } - ] + "git": { + "deploymentEnabled": false + } }