From f5bacbac622f43bf292e1333da13d978da5bec32 Mon Sep 17 00:00:00 2001 From: Dan Robinson Date: Fri, 16 Jan 2026 00:42:14 +0000 Subject: [PATCH] docs: add redirects for docs section root paths MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds redirects so that visiting the root path of a docs section (e.g., /protocol/tip20) redirects to the overview/index page instead of 404ing. Redirects added: - /guide → /quickstart/integrate-tempo - /quickstart → /quickstart/integrate-tempo - /protocol/blockspace → /protocol/blockspace/overview - /protocol/tip20 → /protocol/tip20/overview - /protocol/tip20-rewards → /protocol/tip20-rewards/overview - /protocol/tip403 → /protocol/tip403/overview - /learn/use-cases → /learn/use-cases/remittances - /sdk/typescript/server → /sdk/typescript/server/handlers - /sdk/typescript/prool → /sdk/typescript/prool/setup --- docs/vercel.json | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/docs/vercel.json b/docs/vercel.json index ba3d8d4c02..b503beefa5 100644 --- a/docs/vercel.json +++ b/docs/vercel.json @@ -59,6 +59,51 @@ "source": "/stablecoin-exchange/:path*", "destination": "/stablecoin-dex/:path*", "permanent": true + }, + { + "source": "/guide", + "destination": "/quickstart/integrate-tempo", + "permanent": false + }, + { + "source": "/quickstart", + "destination": "/quickstart/integrate-tempo", + "permanent": false + }, + { + "source": "/protocol/blockspace", + "destination": "/protocol/blockspace/overview", + "permanent": false + }, + { + "source": "/protocol/tip20", + "destination": "/protocol/tip20/overview", + "permanent": false + }, + { + "source": "/protocol/tip20-rewards", + "destination": "/protocol/tip20-rewards/overview", + "permanent": false + }, + { + "source": "/protocol/tip403", + "destination": "/protocol/tip403/overview", + "permanent": false + }, + { + "source": "/learn/use-cases", + "destination": "/learn/use-cases/remittances", + "permanent": false + }, + { + "source": "/sdk/typescript/server", + "destination": "/sdk/typescript/server/handlers", + "permanent": false + }, + { + "source": "/sdk/typescript/prool", + "destination": "/sdk/typescript/prool/setup", + "permanent": false } ] }