Last active
August 15, 2025 17:14
-
-
Save johanguse/73f5d96691badb5d2916070ab385d011 to your computer and use it in GitHub Desktop.
vercel posthog reverse proxy nextjs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "rewrites": [ | |
| { | |
| "source": "/ingest/:path*", | |
| "destination": "https://app.posthog.com/:path*" | |
| }, | |
| { | |
| "source": "/decide/:path*", | |
| "destination": "https://app.posthog.com/decide/:path*" | |
| }, | |
| { | |
| "source": "/e/:path*", | |
| "destination": "https://app.posthog.com/e/:path*" | |
| }, | |
| { | |
| "source": "/s/:path*", | |
| "destination": "https://app.posthog.com/s/:path*" | |
| }, | |
| { | |
| "source": "/capture/:path*", | |
| "destination": "https://app.posthog.com/capture/:path*" | |
| }, | |
| { | |
| "source": "/batch/:path*", | |
| "destination": "https://app.posthog.com/batch/:path*" | |
| }, | |
| { | |
| "source": "/api/surveys/:path*", | |
| "destination": "https://app.posthog.com/api/surveys/:path*" | |
| }, | |
| { | |
| "source": "/static/survey/:path*", | |
| "destination": "https://app.posthog.com/static/survey/:path*" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment