mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-26 06:32:03 +10:00
fix tiptap issues, update dependencies, fix typescript issues with minio client
This commit is contained in:
@ -26,7 +26,11 @@ export const configSchema = z.object({
|
||||
|
||||
// Mail Server
|
||||
MAIL_FROM: z.string().includes("@").optional().default("noreply@localhost"),
|
||||
SMTP_URL: z.string().url().refine(url => url.startsWith("smtp://") || url.startsWith("smtps://")).optional(),
|
||||
SMTP_URL: z
|
||||
.string()
|
||||
.url()
|
||||
.refine((url) => url.startsWith("smtp://") || url.startsWith("smtps://"))
|
||||
.optional(),
|
||||
|
||||
// Storage
|
||||
STORAGE_ENDPOINT: z.string(),
|
||||
|
||||
Reference in New Issue
Block a user