diff options
| author | Sebastien Castiel <sebastien@castiel.me> | 2024-01-14 11:42:32 -0500 |
|---|---|---|
| committer | Sebastien Castiel <sebastien@castiel.me> | 2024-01-14 11:43:48 -0500 |
| commit | beae3366667b54b83e20f7e8d532f694c81bc5d0 (patch) | |
| tree | c40a3136b474978d048a40a6589e35d9c08dfceb /src/lib | |
| parent | 2dcb80f954dcc6a9c87dac1dc33668b4478993b9 (diff) | |
Add donation button (closes #40)
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/env.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/env.ts b/src/lib/env.ts index ddaa553..4bf76ca 100644 --- a/src/lib/env.ts +++ b/src/lib/env.ts @@ -8,6 +8,7 @@ const envSchema = z.object({ FEEDBACK_EMAIL_FROM: z.string().email().optional(), FEEDBACK_EMAIL_TO: z.string().email().optional(), RESEND_API_KEY: z.string().optional(), + STRIPE_DONATION_LINK: z.string().optional(), }) export const env = envSchema.parse(process.env) |
