From 3ee158f6a5a2eeb05f99b23987db955d874f7dd4 Mon Sep 17 00:00:00 2001 From: Brian Love Date: Sat, 2 May 2026 10:43:20 -0700 Subject: [PATCH] fix(website): allow anonymous PostHog analytics --- apps/website/instrumentation-client.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/website/instrumentation-client.ts b/apps/website/instrumentation-client.ts index 716f7823d..abfa07b0d 100644 --- a/apps/website/instrumentation-client.ts +++ b/apps/website/instrumentation-client.ts @@ -13,5 +13,6 @@ if (shouldCaptureAnalytics({ token, captureLocal, host: browserHost })) { api_host: normalizePostHogHost(process.env.NEXT_PUBLIC_POSTHOG_HOST), defaults: '2026-01-30', capture_pageview: true, + person_profiles: 'always', }); }