Recipe-app main

This commit is contained in:
2026-04-09 09:14:39 +02:00
commit 962f4e4be5
10015 changed files with 2445177 additions and 0 deletions
@@ -0,0 +1,29 @@
import { z } from 'next/dist/compiled/zod';
export const devToolsConfigSchema = z.object({
theme: z.enum([
'light',
'dark',
'system'
]).optional(),
disableDevIndicator: z.boolean().optional(),
devToolsPosition: z.enum([
'top-left',
'top-right',
'bottom-left',
'bottom-right'
]).optional(),
devToolsPanelPosition: z.record(z.string(), z.enum([
'top-left',
'top-right',
'bottom-left',
'bottom-right'
])).optional(),
devToolsPanelSize: z.record(z.string(), z.object({
width: z.number(),
height: z.number()
})).optional(),
scale: z.number().optional(),
hideShortcut: z.string().nullable().optional()
});
//# sourceMappingURL=devtools-config-schema.js.map