mirror of
https://github.com/mintlify/docs.git
synced 2026-09-14 13:35:46 +08:00
f34039727d
* docs: fix translation lag in es, fr, and zh pages * chore: add trailing newlines to heap analytics translations --------- Co-authored-by: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com>
29 lines
727 B
Plaintext
29 lines
727 B
Plaintext
---
|
|
title: "Heap"
|
|
description: "将 Heap 分析集成到 Mintlify 文档站点,自动捕获用户交互和事件,进行行为分析。"
|
|
keywords: ["Heap Analytics", "自动事件跟踪", "Heap app ID", "用户交互跟踪"]
|
|
boost: 3
|
|
---
|
|
|
|
在你的 `docs.json` 文件中添加以下配置,将 Analytics 数据发送到 Heap。
|
|
|
|
<CodeGroup>
|
|
```json docs.json 中的 Analytics 选项
|
|
"integrations": {
|
|
"heap": {
|
|
"appId": "required"
|
|
}
|
|
}
|
|
```
|
|
|
|
```json 示例
|
|
"integrations": {
|
|
"heap": {
|
|
"appId": "1234567890"
|
|
}
|
|
}
|
|
```
|
|
</CodeGroup>
|
|
|
|
将 `1234567890` 替换为你的 Heap app ID。你可以在 [Heap 账户设置](https://heapanalytics.com/app/settings) 中找到它。
|