From 2ceb8251d21c4c488319e4fb31d836f8164b086b Mon Sep 17 00:00:00 2001 From: VitalikBerashvili <06.poems_races@icloud.com> Date: Mon, 30 Dec 2024 17:28:06 +0100 Subject: [PATCH] typo fix env.mjs --- src/env.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/env.mjs b/src/env.mjs index de3dfb5f..2e1e7d21 100644 --- a/src/env.mjs +++ b/src/env.mjs @@ -16,7 +16,7 @@ const server = z.object({ // This makes Vercel deployments not fail if you don't set NEXTAUTH_URL // Since NextAuth.js automatically uses the VERCEL_URL if present. (str) => process.env.VERCEL_URL ?? str, - // VERCEL_URL doesn't include `https` so it cant be validated as a URL + // VERCEL_URL doesn't include `https` so it can't be validated as a URL process.env.VERCEL ? z.string().min(1) : z.string().url(), ), // Add `.min(1) on ID and SECRET if you want to make sure they're not empty