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');