UNPKG

@mintlify/validation

Version:

Validates mint.json files

13 lines (12 loc) 329 B
import { z } from 'zod'; export const errorsSchema = z .object({ '404': z.object({ redirect: z .boolean() .optional() .default(true) .describe('Whether to redirect to the home page, if the page is not found'), }), }) .describe('Error pages configuration');