Skip to content

Commit

Permalink
Revert "fix(env): Make NEXT_PUBLIC_DRIVE_LINK temporarily optional in…
Browse files Browse the repository at this point in the history
… environment configuration (#238)"

This reverts commit 2b592d0.
  • Loading branch information
phoenixpereira committed Feb 4, 2025
1 parent 2b592d0 commit bc5a5e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/env.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const env = createEnv({
client: {
NEXT_PUBLIC_KEYCLOAK_REDIRECT_URI: z.string().url().min(1).optional(),
NEXT_PUBLIC_AUTH_KEYCLOAK_ISSUER: z.string().url().min(1).optional(),
NEXT_PUBLIC_DRIVE_LINK: z.string().url().min(1).optional(),
NEXT_PUBLIC_DRIVE_LINK: z.string().url().min(1),
NEXT_PUBLIC_UMAMI_WEBSITE_ID: z.string().optional(),
},
experimental__runtimeEnv: {
Expand Down

0 comments on commit bc5a5e8

Please sign in to comment.