feat: Implement dynamic accent color selection and refactor appearance settings

This commit is contained in:
2025-11-29 00:49:24 -05:00
parent 10e1ca8396
commit c88e5d9d82
26 changed files with 1319 additions and 1235 deletions
+4 -1
View File
@@ -12,7 +12,10 @@ export const env = createEnv({
? z.string()
: z.string().optional(),
DATABASE_URL: z.string().url(),
RESEND_API_KEY: z.string().min(1),
RESEND_API_KEY:
process.env.NODE_ENV === "production"
? z.string().min(1)
: z.string().min(1).optional(),
RESEND_DOMAIN: z.string().optional(),
NODE_ENV: z
.enum(["development", "test", "production"])