mirror of
https://github.com/mintlify/docs.git
synced 2026-09-14 13:35:46 +08:00
428d38fb9e
* 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
33 lines
702 B
Plaintext
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>
|