From 35ab3f0c0626532fd25190fffef9bd8fb03c80f9 Mon Sep 17 00:00:00 2001 From: Jose Selesan Date: Wed, 16 Sep 2026 16:17:34 -0300 Subject: [PATCH] Fix signout --- apps/backend/src/http/security-headers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/backend/src/http/security-headers.ts b/apps/backend/src/http/security-headers.ts index a659b24..83b3ba4 100644 --- a/apps/backend/src/http/security-headers.ts +++ b/apps/backend/src/http/security-headers.ts @@ -14,7 +14,7 @@ export const corsMiddleware: MiddlewareHandler = honoCors({ return ''; }, allowMethods: ['GET', 'POST', 'PUT', 'PATCH', 'DELETE', 'OPTIONS'], - allowHeaders: ['Content-Type', 'Authorization'], + allowHeaders: ['Content-Type', 'Authorization', 'Cache-Control'], maxAge: 600, credentials: true, });