️ Stop using reverse proxy for posthog

This commit is contained in:
Luke Vella 2025-07-13 13:30:46 +01:00
parent c0f1536939
commit 5d0f3f1a82
No known key found for this signature in database
GPG key ID: 469CAD687F0D784C
3 changed files with 3 additions and 24 deletions

View file

@ -1,15 +1,5 @@
{
"installCommand": "pnpm install",
"buildCommand": "cd ../.. && pnpm db:generate && pnpm build:landing",
"outputDirectory": ".next",
"rewrites": [
{
"source": "/relay-XiKLe/static/(.*)",
"destination": "https://eu-assets.i.posthog.com/static/$1"
},
{
"source": "/relay-XiKLe/(.*)",
"destination": "https://eu.i.posthog.com/$1"
}
]
"outputDirectory": ".next"
}

View file

@ -1,15 +1,5 @@
{
"installCommand": "pnpm install",
"buildCommand": "cd ../.. && pnpm db:generate && pnpm build:web && pnpm db:deploy",
"outputDirectory": ".next",
"rewrites": [
{
"source": "/relay-XiKLe/static/(.*)",
"destination": "https://eu-assets.i.posthog.com/static/$1"
},
{
"source": "/relay-XiKLe/(.*)",
"destination": "https://eu.i.posthog.com/$1"
}
]
"outputDirectory": ".next"
}

View file

@ -20,8 +20,7 @@ if (typeof window !== "undefined" && process.env.NEXT_PUBLIC_POSTHOG_API_KEY) {
posthog.init(process.env.NEXT_PUBLIC_POSTHOG_API_KEY, {
debug: false,
api_host: "/relay-XiKLe/",
ui_host: "https://eu.i.posthog.com",
api_host: process.env.NEXT_PUBLIC_POSTHOG_API_HOST,
capture_pageview: false,
capture_pageleave: true,
disable_session_recording: true,