diff --git a/src/env.mjs b/src/env.mjs index de3dfb5..2e1e7d2 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