From c79b23ae71e8dbad31236eb093dfbe8c7b05430d Mon Sep 17 00:00:00 2001 From: Volodymyr Vreshch Date: Sun, 21 Jun 2026 02:26:26 +0200 Subject: [PATCH] feat(docs): redirect /connect -> /docs/connect Short link to the generic connect guide (308 permanent). --- packages/landing/next.config.ts | 4 ++++ 1 file changed, 4 insertions(+) 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.