docs: add Building "Build Configs" lightning talk

This commit is contained in:
Oliver Davies 2023-11-01 22:27:49 +01:00
parent b0d096784f
commit 30e6593ee2
2 changed files with 18 additions and 2 deletions

View file

@ -25,7 +25,7 @@ const talkCollection = defineCollection({
description: z.string(),
events: z.array(
z.object({
date: z.string(),
date: z.string().or(z.date()),
location: z.string().optional(),
name: z.string(),
online: z.boolean().optional(),
@ -38,7 +38,7 @@ const talkCollection = defineCollection({
ratio: z.string(),
url: z.string(),
})
.optional(),
.optional().or(z.null()),
title: z.string(),
video: z
.object({