fix: update docs redirect to use lowercase index.md

Changed DocsHome redirect from /docs/INDEX.md to /docs/index.md
to match the renamed file.
This commit is contained in:
2026-02-02 20:30:27 -05:00
parent 4866af24de
commit 59554d37f6
+1 -1
View File
@@ -213,7 +213,7 @@ func (h *HTTPHandler) showLegacyAPIEndpoint(c echo.Context, endpointPath string,
// DocsHome redirects to the documentation index
func (h *HTTPHandler) DocsHome(c echo.Context) error {
return c.Redirect(http.StatusFound, "/docs/INDEX.md")
return c.Redirect(http.StatusFound, "/docs/index.md")
}
// APIHome shows the API documentation home page