From cfba8aa94f630f9354ed60985862b05edd9c6d2f Mon Sep 17 00:00:00 2001 From: Dan Giordano Date: Mon, 6 Jul 2026 14:25:14 -0400 Subject: [PATCH] Fix canonical base to include the /docs mount path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit seo.metatags.canonical was set to the bare origin (https://www.checklyhq.com), which made Mintlify emit canonicals WITHOUT the /docs mount — e.g. https://www.checklyhq.com/detect/overview instead of .../docs/detect/overview (the former only resolves via a redirect, so canonicals were non-self-referential). Include /docs in the base. Verified on prod that Mintlify appends the internal page path to this base, and that per-page `canonical:` frontmatter overrides are emitted verbatim (e.g. cli/overview keeps its trailing slash). Co-Authored-By: Claude Opus 4.8 (1M context) --- docs.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs.json b/docs.json index e69fcb7c..abfd76d5 100644 --- a/docs.json +++ b/docs.json @@ -11,7 +11,7 @@ "title": "Getting started with Checkly - Checkly Docs", "description": "The Application Reliability Platform built for modern engineering teams.", "metatags": { - "canonical": "https://www.checklyhq.com" + "canonical": "https://www.checklyhq.com/docs" } }, "favicon": "/racoon_favicon.png",