From e4e735d3ffe0cf40bfbc6b666747568636070f10 Mon Sep 17 00:00:00 2001 From: Alex Newman Date: Thu, 19 Feb 2026 22:39:36 -0500 Subject: [PATCH] fix: add rewrite rule so install.cmem.ai root serves install.sh Without this, curl https://install.cmem.ai returns 404 because Vercel has no index file mapping for the root path. Co-Authored-By: Claude Opus 4.6 --- install/vercel.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/vercel.json b/install/vercel.json index 8a9d1a9c..30cecfd9 100644 --- a/install/vercel.json +++ b/install/vercel.json @@ -1,5 +1,8 @@ { "$schema": "https://openapi.vercel.sh/vercel.json", + "rewrites": [ + { "source": "/", "destination": "/install.sh" } + ], "headers": [ { "source": "/(.*)\\.sh",