fix: downgrade cringe biome

This commit is contained in:
Aman Varshney
2025-07-16 17:18:03 +05:30
parent f436c22af2
commit 6a43a4f161
6 changed files with 184 additions and 197 deletions

View File

@@ -1,9 +1,9 @@
import posthog from "posthog-js"
import posthog from "posthog-js";
posthog.init(process.env.NEXT_PUBLIC_POSTHOG_KEY!, {
api_host: "/ingest",
ui_host: "https://us.posthog.com",
defaults: '2025-05-24',
capture_exceptions: true, // This enables capturing exceptions using Error Tracking
debug: process.env.NODE_ENV === "development",
});
posthog.init(process.env.NEXT_PUBLIC_POSTHOG_KEY || "", {
api_host: "/ingest",
ui_host: "https://us.posthog.com",
defaults: "2025-05-24",
capture_exceptions: true, // This enables capturing exceptions using Error Tracking
debug: process.env.NODE_ENV === "development",
});