Skip to content

Commit

Permalink
fix: createEnv type error (#601)
Browse files Browse the repository at this point in the history
  • Loading branch information
luis-herasme authored Oct 21, 2024
1 parent e7187c3 commit 5a4a662
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/web/src/env.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ export const env = createEnv({
NEXT_PUBLIC_SENTRY_DSN_WEB: process.env.NEXT_PUBLIC_SENTRY_DSN_WEB,
TRACES_ENABLED: process.env.TRACES_ENABLED,
METRICS_ENABLED: process.env.METRICS_ENABLED,
NEXT_PUBLIC_POSTHOG_ID: process.env.NEXT_PUBLIC_POSTHOG_ID,
NEXT_PUBLIC_POSTHOG_HOST: process.env.NEXT_PUBLIC_POSTHOG_HOST
},
skipValidation: !!process.env.CI || !!process.env.SKIP_ENV_VALIDATION,
});

0 comments on commit 5a4a662

Please sign in to comment.