Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions apps/www/next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,15 @@ const config = {
source: `${POSTHOG_PROXY_PREFIX}/:path*`,
destination: `${POSTHOG_API_ENDPOINT}/:path*`,
},
/**
* Proxy TanStack CLI add-on to v1 preview during alpha.
* Keeps v1 as the single source of truth for template updates.
* TODO(v1-ga): Remove this rewrite once v1 is merged into dev/main.
*/
{
source: "/tanstack/:path*",
destination: "https://arkenv-v1.vercel.app/tanstack/:path*",
},
];
},
// This is required to support PostHog trailing slash API requests
Expand Down
Loading