mirror of
https://github.com/mintlify/docs.git
synced 2026-09-14 13:35:46 +08:00
5e861eea94
* all integrations have quotes now * fixed 2 broken links * vale found the the
33 lines
449 B
Plaintext
33 lines
449 B
Plaintext
---
|
|
title: "Plausible"
|
|
---
|
|
|
|
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",
|
|
"server": "optional"
|
|
}
|
|
}
|
|
```
|
|
|
|
```json Example
|
|
"integrations": {
|
|
"plausible": {
|
|
"domain": "docs.domain.com"
|
|
}
|
|
}
|
|
```
|
|
|
|
</CodeGroup>
|