From b7bb6d05af328bdca259d51a2f5942141b61dcf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hartmut=20N=C3=B6renberg?= Date: Fri, 3 Apr 2026 15:46:38 +0200 Subject: [PATCH] fix(nav): redirect /blueprints to /admin/blueprints (#52) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Prevents a confusing 404 when users navigate directly to /blueprints. Mirrors the existing /login → /auth/signin redirect pattern. Co-Authored-By: claude-flow --- apps/web/next.config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/web/next.config.ts b/apps/web/next.config.ts index befa6f5..41da849 100644 --- a/apps/web/next.config.ts +++ b/apps/web/next.config.ts @@ -22,6 +22,8 @@ const nextConfig: NextConfig = { return [ // Common URL alias — redirect to the real auth entry point { source: "/login", destination: "/auth/signin", permanent: true }, + // Common shorthand — redirect to the admin blueprints management page + { source: "/blueprints", destination: "/admin/blueprints", permanent: true }, ]; }, async headers() {