From b627e4a34c77c699ae38dc93fdf45d2c30158d27 Mon Sep 17 00:00:00 2001 From: Joaquim Verges Date: Tue, 30 Sep 2025 14:58:36 +1300 Subject: [PATCH] [Nebula] Add permanent redirect to thirdweb.com/ai --- apps/nebula/next.config.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/apps/nebula/next.config.ts b/apps/nebula/next.config.ts index 28ce29d2a55..2a3ab1c13f4 100644 --- a/apps/nebula/next.config.ts +++ b/apps/nebula/next.config.ts @@ -64,6 +64,15 @@ const baseNextConfig: NextConfig = { }, productionBrowserSourceMaps: false, reactStrictMode: true, + async redirects() { + return [ + { + source: "/:path*", + destination: "https://thirdweb.com/ai", + permanent: true, + }, + ]; + }, async rewrites() { return [ {