aboutsummaryrefslogtreecommitdiff
path: root/docs/runtime/bunfig.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/runtime/bunfig.md')
-rw-r--r--docs/runtime/bunfig.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/runtime/bunfig.md b/docs/runtime/bunfig.md
index 3db6965f5..52ffcec11 100644
--- a/docs/runtime/bunfig.md
+++ b/docs/runtime/bunfig.md
@@ -100,6 +100,14 @@ Bun supports the following loaders:
- `dataurl`
- `text`
+### `telemetry`
+
+The `telemetry` field permit to enable/disable the analytics records. Bun records bundle timings (so we can answer with data, "is Bun getting faster?") and feature usage (e.g., "are people actually using macros?"). The request body size is about 60 bytes, so it's not a lot of data. By default the telemetry is enabled. Equivalent of `DO_NOT_TRACK` env variable.
+
+```toml
+telemetry = false
+```
+
## Test runner
The test runner is configured under the `[test]` section of your bunfig.toml.