From 70e9df57f2e38781df6ab293efca5b53084aa19c Mon Sep 17 00:00:00 2001 From: redninjale Date: Thu, 27 Feb 2025 20:07:02 -0600 Subject: [PATCH] test2 --- my-turborepo/packages/auth/env.ts | 2 +- my-turborepo/packages/auth/src/config.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/my-turborepo/packages/auth/env.ts b/my-turborepo/packages/auth/env.ts index 6d94904d..45936326 100644 --- a/my-turborepo/packages/auth/env.ts +++ b/my-turborepo/packages/auth/env.ts @@ -13,7 +13,7 @@ export const env = createEnv({ process.env.NODE_ENV === "production" ? z.string().min(1) : z.string().min(1).optional(), - AUTH_URL: z.string().url().optional(), + AUTH_TRUST_HOST: z.string().url().optional(), }, client: {}, experimental__runtimeEnv: {}, diff --git a/my-turborepo/packages/auth/src/config.ts b/my-turborepo/packages/auth/src/config.ts index c0f0c4e9..21f0c7e9 100644 --- a/my-turborepo/packages/auth/src/config.ts +++ b/my-turborepo/packages/auth/src/config.ts @@ -46,5 +46,4 @@ export const authConfig = { }; }, }, - trustHost: !!env.AUTH_URL, } satisfies NextAuthConfig;