We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a71045 commit 93650b5Copy full SHA for 93650b5
lib/env.ts
@@ -20,10 +20,10 @@ const schema = z.object({
20
AUTH_URL: z.string().optional(),
21
AUTH_SECRET: z.string(),
22
BASE_URL: z.string(),
23
- QSTASH_URL: z.string(),
24
- QSTASH_TOKEN: z.string(),
25
- QSTASH_CURRENT_SIGNING_KEY: z.string(),
26
- QSTASH_NEXT_SIGNING_KEY: z.string(),
+ QSTASH_URL: z.string().optional(),
+ QSTASH_TOKEN: z.string().optional(),
+ QSTASH_CURRENT_SIGNING_KEY: z.string().optional(),
+ QSTASH_NEXT_SIGNING_KEY: z.string().optional(),
27
});
28
29
export const env = schema.parse(process.env);
0 commit comments