From 2f64c119663e480396c2e79e9056cfa0e9aad038 Mon Sep 17 00:00:00 2001 From: Sarina Li Date: Thu, 13 Nov 2025 11:26:12 -0500 Subject: [PATCH] add permanent redirs --- docs/next.config.mjs | 19 +++++++++++++++++++ docs/src/components/footer.tsx | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/docs/next.config.mjs b/docs/next.config.mjs index 38bc191e..fdb996c1 100644 --- a/docs/next.config.mjs +++ b/docs/next.config.mjs @@ -38,6 +38,25 @@ const config = { permanent: true, // 301 redirect to preserve SEO authority basePath: false, }, + // Redirects for documentation restructure (PR #568) + // Moved quickstart-devs to get-started section + { + source: '/quickstart-devs', + destination: '/get-started/quickstart', + permanent: true, + }, + // Moved telemetry to agent-sdk section + { + source: '/telemetry', + destination: '/agent-sdk/telemetry', + permanent: true, + }, + // Removed quickstart-cli, consolidated into main quickstart + { + source: '/quickstart-cli', + destination: '/get-started/quickstart', + permanent: true, + }, ]; }, images: { diff --git a/docs/src/components/footer.tsx b/docs/src/components/footer.tsx index b129eebe..45a7e2d8 100644 --- a/docs/src/components/footer.tsx +++ b/docs/src/components/footer.tsx @@ -56,7 +56,7 @@ export function Footer() {
  • Quick Start