Compare commits

...

2 commits

Author SHA1 Message Date
Cat /dev/Nulo 12b7d705f7 schema: homepage es opcional 2023-12-07 18:39:52 -03:00
Cat /dev/Nulo 373e50c155 netlify redirects 2023-12-07 18:35:45 -03:00
2 changed files with 2 additions and 1 deletions

View file

@ -0,0 +1 @@
/* /index.html 200

View file

@ -23,7 +23,7 @@ export const zDataset = z.object({
export const zData = z.object({
title: z.string(),
description: z.string(),
homepage: z.string(),
homepage: z.string().optional(),
dataset: z.array(zDataset),
});