From b8f90929bdb76ef5f175ba49d8c05625045c9727 Mon Sep 17 00:00:00 2001 From: Dhravya Shah Date: Fri, 17 Jul 2026 16:30:16 -0700 Subject: [PATCH] =?UTF-8?q?docs:=20fix=20redirect=20loop=20=E2=80=94=20lan?= =?UTF-8?q?d=20on=20/overview,=20root=20redirects=20there=20once?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Serving the landing at / via an index page loops on Mintlify hosting (/ -> first nav page /index -> normalized back to /). Use the /overview slug instead: / redirects there once via Mintlify's built-in behavior, /intro and legacy intro paths redirect to /overview, no destination is bare / anymore. Co-Authored-By: Claude Fable 5 --- apps/docs/docs.json | 12 ++++++------ apps/docs/integrations/hermes.mdx | 2 +- apps/docs/{index.mdx => overview.mdx} | 0 3 files changed, 7 insertions(+), 7 deletions(-) rename apps/docs/{index.mdx => overview.mdx} (100%) diff --git a/apps/docs/docs.json b/apps/docs/docs.json index 8755cfdd..5f1b20f0 100644 --- a/apps/docs/docs.json +++ b/apps/docs/docs.json @@ -79,7 +79,7 @@ { "group": "Start Here", "pages": [ - "index", + "overview", "quickstart", "vibe-coding" ] @@ -387,7 +387,7 @@ "source": "/integrations/clawdbot" }, { - "destination": "/", + "destination": "/overview", "permanent": false, "source": "/" }, @@ -640,7 +640,7 @@ }, { "source": "/overview/why-supermemory", - "destination": "/" + "destination": "/overview" }, { "source": "/supermemory-mcp/introduction", @@ -672,7 +672,7 @@ }, { "source": "/memory-api/introduction", - "destination": "/" + "destination": "/overview" }, { "source": "/memory-api/sdks/anthropic-claude-memory", @@ -728,7 +728,7 @@ }, { "source": "/introduction", - "destination": "/" + "destination": "/overview" }, { "source": "/memory-api/connectors/advanced/bring-your-own-key", @@ -748,7 +748,7 @@ }, { "source": "/intro", - "destination": "/" + "destination": "/overview" } ], "styling": { diff --git a/apps/docs/integrations/hermes.mdx b/apps/docs/integrations/hermes.mdx index 26ad7b1d..99b2cfe1 100644 --- a/apps/docs/integrations/hermes.mdx +++ b/apps/docs/integrations/hermes.mdx @@ -148,4 +148,4 @@ If you run your own supermemory API, set **`base_url`** (and any other host-spec -Questions about the API or product? [Discord](https://supermemory.link/discord) · [support@supermemory.ai](mailto:support@supermemory.ai) · [Developer docs](/) +Questions about the API or product? [Discord](https://supermemory.link/discord) · [support@supermemory.ai](mailto:support@supermemory.ai) · [Developer docs](/overview) diff --git a/apps/docs/index.mdx b/apps/docs/overview.mdx similarity index 100% rename from apps/docs/index.mdx rename to apps/docs/overview.mdx