chore(cms): disable Payload's anonymous telemetry
CI Pipeline with Test Management / 🧪 Run Tests & Generate Reports (push) Waiting to run
CI Pipeline with Test Management / 🐳 Docker Integration Tests (push) Blocked by required conditions
CI Pipeline with Test Management / 🏗️ Build Docker Image (push) Blocked by required conditions
CI Pipeline with Test Management / 📊 Generate Test Summary (push) Blocked by required conditions
Test Reporting & Gherkin Analysis / 🧪 Run Tests & Generate Reports (push) Waiting to run
Test Reporting & Gherkin Analysis / 📊 Analyze Test Coverage (push) Blocked by required conditions
Test Reporting & Gherkin Analysis / 🔄 Sync with Linear (push) Blocked by required conditions
Test Reporting & Gherkin Analysis / ⚡ Performance Monitoring (push) Blocked by required conditions

Payload sends anonymous usage telemetry to its own servers by default.
The site is self-hosted specifically so the client's data never leaves
our own infrastructure (see the legal/GDPR discussion in chat) — that
reasoning extends to Payload's own runtime telemetry too, so opt out
via telemetry: false in payload.config.ts.

Verified: build and dev server produce no telemetry notice, and the
admin dashboard's network requests (checked in a real browser) are
all to localhost — no outbound telemetry calls.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Do Siki
2026-09-10 10:52:54 +02:00
co-authored by Claude Sonnet 5
parent db2f38743f
commit a3d7e9ce75
+5
View File
@@ -49,5 +49,10 @@ export default buildConfig({
url: process.env.MONGODB_URI || '',
}),
// WHY: Payload sends anonymous usage telemetry to its own servers by
// default — GDPR-tudatosan kikapcsolva, mivel a projekt self-hosted és
// az ügyfél adatai nem hagyhatják el a saját infrastruktúránkat.
telemetry: false,
sharp,
})