Skip to content

Commit 17dd612

Browse files
committed
Update env.ts
1 parent fac81b1 commit 17dd612

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

apps/web/src/env.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { z } from "zod";
33

44
export const env = createEnv({
55
server: {
6+
DAYTONA_API_KEY: z.string().min(1),
67
RESEND_API_KEY: z.string().min(1),
78
RESEND_SENDER_EMAIL_AUTH: z.string().min(1),
89
POLAR_ORGANIZATION_TOKEN: z.string().min(1),
@@ -25,6 +26,7 @@ export const env = createEnv({
2526
},
2627
// If you're using Next.js < 13.4.4, you'll need to specify the runtimeEnv manually
2728
runtimeEnv: {
29+
DAYTONA_API_KEY: process.env.DAYTONA_API_KEY,
2830
RESEND_API_KEY: process.env.RESEND_API_KEY,
2931
RESEND_SENDER_EMAIL_AUTH: process.env.RESEND_SENDER_EMAIL_AUTH,
3032
POLAR_ORGANIZATION_TOKEN: process.env.POLAR_ORGANIZATION_TOKEN,

0 commit comments

Comments
 (0)