remove discord auth environment variables (no longer needed)

This commit is contained in:
Brandon Egger
2023-05-18 20:02:26 -05:00
parent 89fb15696c
commit 165ddf8dd9
3 changed files with 43 additions and 12 deletions

View File

@ -18,9 +18,6 @@ const server = z.object({
// VERCEL_URL doesn't include `https` so it cant be validated as a URL
process.env.VERCEL ? z.string().min(1) : z.string().url()
),
// Add `.min(1) on ID and SECRET if you want to make sure they're not empty
DISCORD_CLIENT_ID: z.string(),
DISCORD_CLIENT_SECRET: z.string(),
});
/**