From 69cfeced99496b225d3f5afd16d64a1b872d263a Mon Sep 17 00:00:00 2001 From: hiento09 <136591877+hiento09@users.noreply.github.com> Date: Fri, 15 Dec 2023 12:10:30 +0700 Subject: [PATCH] Update posthog capture url list (#1022) Co-authored-by: Hien To --- web/utils/posthog.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/utils/posthog.ts b/web/utils/posthog.ts index b46abf8b5a..5c90757645 100644 --- a/web/utils/posthog.ts +++ b/web/utils/posthog.ts @@ -3,7 +3,7 @@ import posthog, { Properties } from 'posthog-js' posthog.init(ANALYTICS_ID, { api_host: ANALYTICS_HOST, autocapture: { - url_allowlist: ['*'], + url_allowlist: ['./*'], }, })