From b4e0dabb3707e537f9240bdebf5a42d22fde920a Mon Sep 17 00:00:00 2001 From: Cesar Garcia <128240629+Chesars@users.noreply.github.com> Date: Tue, 9 Dec 2025 23:49:49 -0300 Subject: [PATCH] fix: use absolute URL for Supported Endpoints link to avoid Docusaurus slug conflict (#17710) The relative link was causing Docusaurus to incorrectly associate the /supported_endpoints page with SDK Functions category instead of the actual Supported Endpoints generated-index. --- docs/my-website/sidebars.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/my-website/sidebars.js b/docs/my-website/sidebars.js index c0987b2ea7d..5c608d413cc 100644 --- a/docs/my-website/sidebars.js +++ b/docs/my-website/sidebars.js @@ -172,7 +172,7 @@ const sidebars = { { type: "link", label: "All Supported Endpoints →", - href: "/docs/supported_endpoints", + href: "https://docs.litellm.ai/docs/supported_endpoints", }, ], },