mirror of
https://github.com/mintlify/docs.git
synced 2026-09-14 13:35:46 +08:00
1876c01f16
Co-authored-by: locadex-agent[bot] <217277504+locadex-agent[bot]@users.noreply.github.com>
32 lines
725 B
Plaintext
32 lines
725 B
Plaintext
---
|
||
title: "Plausible"
|
||
description: "使用 Plausible 进行简单、尊重隐私的分析。"
|
||
keywords: ["Plausible Analytics", "privacy-respecting analytics", "self-hosted analytics", "domain configuration"]
|
||
---
|
||
|
||
在 `docs.json` 中添加你站点的 domain,以将 Analytics 发送至 Plausible。
|
||
|
||
<Info>
|
||
为 domain 或服务器填写时不要包含 `https://`。
|
||
</Info>
|
||
|
||
<CodeGroup>
|
||
|
||
```json docs.json 中的 Analytics 选项
|
||
"integrations": {
|
||
"plausible": {
|
||
"domain": "required - your documentation domain",
|
||
"server": "optional - your self-hosted Plausible server URL"
|
||
}
|
||
}
|
||
```
|
||
|
||
```json 示例
|
||
"integrations": {
|
||
"plausible": {
|
||
"domain": "docs.domain.com"
|
||
}
|
||
}
|
||
```
|
||
|
||
</CodeGroup> |