mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
fix: remove default(false) on unsafeWritable
This commit is contained in:
parent
4f55cbb22e
commit
7002fcba79
1 changed files with 1 additions and 1 deletions
|
@ -310,7 +310,7 @@ export const dbConfigSchema = z.object({
|
|||
.function()
|
||||
.returns(z.union([z.void(), z.promise(z.void())]))
|
||||
.optional(),
|
||||
unsafeWritable: z.boolean().optional().default(false),
|
||||
unsafeWritable: z.boolean().optional(),
|
||||
});
|
||||
|
||||
export type DBUserConfig = Omit<z.input<typeof dbConfigSchema>, 'data'> & {
|
||||
|
|
Loading…
Reference in a new issue