From 830699a9ef4ac9d8866e706ccce8fa32a0232341 Mon Sep 17 00:00:00 2001 From: dvelo <52332868+DeveloLongScript@users.noreply.github.com> Date: Sat, 1 Mar 2025 17:27:59 -0600 Subject: [PATCH] fix(www): redirect loop --- apps/www/vercel.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/www/vercel.json b/apps/www/vercel.json index 27e22aa..646e0e1 100644 --- a/apps/www/vercel.json +++ b/apps/www/vercel.json @@ -1,5 +1,8 @@ { "rewrites": [ - { "source": "/docs/:match*", "destination": "https://mhsf.mintlify.app" } + { + "source": "/docs/:match*", + "destination": "https://mhsf.mintlify.app/docs/:match*" + } ] }