From bc28a784869c65670f7c2c59d91d1771d722f10b Mon Sep 17 00:00:00 2001 From: "t3-code[bot]" <269035359+t3-code[bot]@users.noreply.github.com> Date: Thu, 10 Sep 2026 23:08:37 +0000 Subject: [PATCH] fix(marketing): redirect /app to app.t3.codes Co-authored-by: Julius Marminge <51714798+juliusmarminge@users.noreply.github.com> --- apps/marketing/vercel.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/marketing/vercel.ts b/apps/marketing/vercel.ts index fe11ddd4c069..e37be215f1a0 100644 --- a/apps/marketing/vercel.ts +++ b/apps/marketing/vercel.ts @@ -7,4 +7,11 @@ export const config: VercelConfig = { installCommand: "npm install -g vite-plus && vp install --filter '@t3tools/marketing...'", buildCommand: "vp run --filter @t3tools/marketing build", outputDirectory: "dist", + redirects: [ + { + source: "/app", + destination: "https://app.t3.codes", + permanent: true, + }, + ], };