mirror of
https://github.com/mintlify/docs.git
synced 2026-09-14 13:35:46 +08:00
9200586a3a
* docs: boost search ranking for single-word title pages Apply `boost: 3` to English pages whose H1 / frontmatter title is a single word (e.g. "Assistant", "Quickstart", "Cards"). Short titles tend to be canonical landing pages for a topic, so users searching the exact term should land on them first. * docs: drop boost on websocket-playground stub to keep canonical Playground ranking `api-playground/websocket-playground.mdx` is an auto-generated AsyncAPI stub with no body content but shares the title "Playground" with `api-playground/overview.mdx`. Boosting both equally diluted the canonical overview page in search for the query "playground". Drop the boost on the stub.
34 lines
804 B
Plaintext
34 lines
804 B
Plaintext
---
|
|
title: "Plausible"
|
|
description: "Integrate Plausible Analytics with your Mintlify documentation for lightweight, privacy-respecting visitor tracking without cookies or consent banners."
|
|
keywords: ["Plausible Analytics", "privacy-respecting analytics", "self-hosted analytics", "domain configuration"]
|
|
boost: 3
|
|
---
|
|
|
|
Add your site's domain to `docs.json` to send analytics to Plausible.
|
|
|
|
<Info>
|
|
Do not include `https://` for the domain or server.
|
|
</Info>
|
|
|
|
<CodeGroup>
|
|
|
|
```json Analytics options in docs.json
|
|
"integrations": {
|
|
"plausible": {
|
|
"domain": "required - your documentation domain",
|
|
"server": "optional - your self-hosted Plausible server URL"
|
|
}
|
|
}
|
|
```
|
|
|
|
```json Example
|
|
"integrations": {
|
|
"plausible": {
|
|
"domain": "docs.domain.com"
|
|
}
|
|
}
|
|
```
|
|
|
|
</CodeGroup>
|