diff --git a/packages/landing/next.config.ts b/packages/landing/next.config.ts index 5731153..d6b331a 100644 --- a/packages/landing/next.config.ts +++ b/packages/landing/next.config.ts @@ -2,6 +2,10 @@ import type { NextConfig } from 'next'; const nextConfig: NextConfig = { output: 'standalone', + async redirects() { + // Short link to the generic connect guide. + return [{ source: '/connect', destination: '/docs/connect', permanent: true }]; + }, async rewrites() { // The waitlist/unsubscribe calls now hit the API host directly (api./api, // cross-origin) - see lib/site.ts - so no same-origin /api proxy is needed here.