2 parents a3a779a + 3e1e9e0 commit 1d54f0fCopy full SHA for 1d54f0f
1 file changed
apps/www/next.config.ts
@@ -79,6 +79,15 @@ const config = {
79
source: `${POSTHOG_PROXY_PREFIX}/:path*`,
80
destination: `${POSTHOG_API_ENDPOINT}/:path*`,
81
},
82
+ /**
83
+ * Proxy TanStack CLI add-on to v1 preview during alpha.
84
+ * Keeps v1 as the single source of truth for template updates.
85
+ * TODO(v1-ga): Remove this rewrite once v1 is merged into dev/main.
86
+ */
87
+ {
88
+ source: "/tanstack/:path*",
89
+ destination: "https://arkenv-v1.vercel.app/tanstack/:path*",
90
+ },
91
];
92
93
// This is required to support PostHog trailing slash API requests
0 commit comments