From a3d7e9ce75e3db3d38f6fc546a457f166611c1ed Mon Sep 17 00:00:00 2001 From: Do Siki Date: Thu, 10 Sep 2026 10:52:54 +0200 Subject: [PATCH] chore(cms): disable Payload's anonymous telemetry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- proto/src/payload.config.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/proto/src/payload.config.ts b/proto/src/payload.config.ts index 60d4517..f7e89d9 100644 --- a/proto/src/payload.config.ts +++ b/proto/src/payload.config.ts @@ -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, })