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() {