mirror of
https://github.com/jakejarvis/sofa.git
synced 2026-07-14 18:15:56 -04:00
- Add Vercel rewrites to proxy `/ingest/*` and `/ingest/static/*` to PostHog's US endpoints - Update native `.env.example` to point `EXPO_PUBLIC_POSTHOG_HOST` at the self-hosted proxy URL
14 lines
275 B
JSON
14 lines
275 B
JSON
{
|
|
"bunVersion": "1.x",
|
|
"rewrites": [
|
|
{
|
|
"source": "/ingest/static/:path(.*)",
|
|
"destination": "https://us-assets.i.posthog.com/static/:path"
|
|
},
|
|
{
|
|
"source": "/ingest/:path(.*)",
|
|
"destination": "https://us.i.posthog.com/:path"
|
|
}
|
|
]
|
|
}
|