Skip to content

Commit 9a5aceb

Browse files
authoredOct 2, 2024··
Added nullable to another optional env variable
1 parent 5c63a0f commit 9a5aceb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/env.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const env = createEnv({
1111
AUTH_GITHUB_TOKEN: z.string().optional()
1212
},
1313
client: {
14-
NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME: z.string().optional(),
14+
NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME: z.string().optional().nullable(),
1515
NEXT_PUBLIC_ANALYTICS_WEBSITE_ID: z.string().uuid().optional().nullable(),
1616
},
1717
experimental__runtimeEnv: {

0 commit comments

Comments
 (0)
Please sign in to comment.