From 40020b78f824344a9ceb5cb538840d99dbdf0f1d Mon Sep 17 00:00:00 2001 From: Sean O'Connor Date: Thu, 18 Jun 2026 01:45:18 -0400 Subject: [PATCH] fix: auth lock privacy --- src/proxy.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/proxy.ts b/src/proxy.ts index 472b675..5c68e95 100644 --- a/src/proxy.ts +++ b/src/proxy.ts @@ -11,7 +11,13 @@ export function proxy(request: NextRequest) { } // Define public routes that don't require authentication - const publicRoutes = ["/", "/auth/signin", "/auth/register"]; + const publicRoutes = [ + "/", + "/auth/signin", + "/auth/register", + "/privacy", + "/terms", + ]; // Define API routes that should be handled separately const apiRoutes = ["/api/auth", "/api/trpc", "/api/mcp", "/api/i"];