From d9b7744c69052917196bf792bc7c19a97f8879c0 Mon Sep 17 00:00:00 2001 From: Artem Niehrieiev Date: Thu, 14 Aug 2025 12:22:46 +0000 Subject: [PATCH] fix: set cookie path for session cookie in bootstrap function --- backend/src/main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/main.ts b/backend/src/main.ts index 03cba7638..57d32a966 100644 --- a/backend/src/main.ts +++ b/backend/src/main.ts @@ -55,6 +55,7 @@ async function bootstrap() { domain: cookieDomain, maxAge: 2 * 60 * 60 * 1000, httpOnly: true, + path: '/', }, name: 'rocketadmin.sid', }),