From 903122892472fdd633c7545454e5a206c01adbc6 Mon Sep 17 00:00:00 2001 From: colinislit Date: Wed, 19 Nov 2025 21:21:30 +0100 Subject: [PATCH] fix: make /releases route public (no auth required) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added /releases to publicRoutes in middleware to allow unauthenticated access to feature documentation. The documentation pages are part of the build-in-public approach and should be accessible to everyone. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- middleware.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/middleware.ts b/middleware.ts index 63a965d..66cdcbc 100644 --- a/middleware.ts +++ b/middleware.ts @@ -50,6 +50,7 @@ export async function middleware(request: NextRequest) { '/update-password', '/auth/callback', '/contact', + '/releases', '/api/leads', '/robots.txt', '/sitemap.xml',