Files
mintlify__docs/integrations/analytics/plausible.mdx
Ethan Palm 428d38fb9e Feedback fixes (#2603)
* add explanation of plausible server

* add info on aligning table columns

* clarify API keys

* add example API use cases

* update link to API auth

* remove passive voice
2026-01-08 10:12:33 -08:00

33 lines
702 B
Plaintext

---
title: "Plausible"
description: "Track simple, privacy-respecting analytics with Plausible."
keywords: ["Plausible Analytics", "privacy-respecting analytics", "self-hosted analytics", "domain configuration"]
---
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>