We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e138a4 commit d9244eeCopy full SHA for d9244ee
.github/workflows/lint.yml
@@ -76,3 +76,5 @@ jobs:
76
run: exit ${{ steps.lint.outputs.exit_code }}
77
- name: Build
78
run: pnpm run build --no-lint
79
+ env:
80
+ SKIP_T3_ENV_VALIDATION: 'true'
src/lib/env.ts
@@ -11,4 +11,5 @@ export const env = createEnv({
11
NEXT_PUBLIC_SENTRY_DSN: process.env.NEXT_PUBLIC_SENTRY_DSN,
12
},
13
extends: [vercel()],
14
+ skipValidation: process.env.SKIP_T3_ENV_VALIDATION === 'true',
15
});
0 commit comments