From 759787a93fd73e0e0b8ca716308f507d31103bc1 Mon Sep 17 00:00:00 2001 From: Naman Date: Sun, 2 Aug 2026 16:31:24 +0200 Subject: [PATCH] Fix docs asset 404s: :path(.+) does not span slashes Multi-segment paths like /docs/_next/static/css/x.css fell through the rewrite, so pages rendered unstyled. Use (.*) as the website proxy does. Co-Authored-By: Claude Fable 5 --- apps/docs/vercel.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/vercel.json b/apps/docs/vercel.json index 4ad30a7..f4bacec 100644 --- a/apps/docs/vercel.json +++ b/apps/docs/vercel.json @@ -3,6 +3,6 @@ "rewrites": [ { "source": "/docs", "destination": "/" }, { "source": "/docs/", "destination": "/" }, - { "source": "/docs/:path(.+)", "destination": "/:path" } + { "source": "/docs/:path(.*)", "destination": "/:path" } ] }