UNPKG

@mintlify/validation

Version:

Validates mint.json files

5 lines (4 loc) 254 B
import { z } from 'zod'; import { standardConfigSchema } from './reusable/index.js'; import { themeSchema } from './themes.js'; export const aspenConfigSchema = z.object(Object.assign({ theme: z.literal(themeSchema.enum.aspen) }, standardConfigSchema));