From a7b19e8b14a80ff1dc3bbd3ef49bae3f88fc16f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20J=C3=A4derberg?= Date: Mon, 22 Sep 2025 12:33:14 +0000 Subject: [PATCH] Merged in fix/trust-host-partner-sas (pull request #2844) add trust host setting for partner-sas auth * add trust host setting for partner-sas auth Approved-by: Anton Gunnarsson --- apps/partner-sas/auth.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/partner-sas/auth.ts b/apps/partner-sas/auth.ts index 216351de8..023595d5b 100644 --- a/apps/partner-sas/auth.ts +++ b/apps/partner-sas/auth.ts @@ -30,6 +30,8 @@ const sasProvider = Auth0Provider({ const config: NextAuthConfig = { basePath: "/api/web/auth", + debug: env.NEXTAUTH_DEBUG, + trustHost: true, providers: [sasProvider], session: { strategy: "jwt",