migrate to next 15 and react 19

This commit is contained in:
Milo Schwartz 2024-10-23 13:30:23 -04:00
parent 2322640dc0
commit ce19cc4ba4
No known key found for this signature in database
20 changed files with 196 additions and 187 deletions

View file

@ -31,7 +31,7 @@ const environmentSchema = z.object({
email: z
.object({
smtp_host: z.string().optional(),
smtp_port: z.number().optional(),
smtp_port: z.number().positive().gt(0).lte(65535).optional(),
smtp_user: z.string().optional(),
smtp_pass: z.string().optional(),
no_reply: z.string().email().optional(),