feat(config): change default value of boolean to false in config schema

This commit is contained in:
MythEclipse
2026-05-29 18:12:28 +07:00
parent 7da83387ee
commit b96fb619c9
+1 -1
View File
@@ -124,7 +124,7 @@ const configSchema = z
.string()
.optional()
.transform((v) => v === "true")
.default(true),
.default(false),
DATABASE_TYPE: z.enum(["sqlite", "postgres"]).default("sqlite"),
DATABASE_URL: z.string().optional(),
POSTGRES_HOST: z.string().default("localhost"),