From 9e773355b515bc94651f1436f02717666dd57880 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Tue, 23 Dec 2025 22:54:09 +0100 Subject: [PATCH] feat: remplacer le champ 'emoji' par 'icon' dans les collections --- content.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content.config.ts b/content.config.ts index 9578d9c..b9d1d58 100644 --- a/content.config.ts +++ b/content.config.ts @@ -19,7 +19,7 @@ export const collections = { cover: z.string().optional(), favorite: z.boolean().optional(), status: z.string().optional(), - emoji: z.string().optional() + icon: z.string() }) }), uses: defineCollection({ @@ -55,7 +55,7 @@ export const collections = { location: z.string(), description: z.string(), tags: z.array(z.string()).optional(), - emoji: z.string().optional() + icon: z.string() }) }), education: defineCollection({ @@ -72,7 +72,7 @@ export const collections = { location: z.string(), description: z.string().optional(), tags: z.array(z.string()).optional(), - emoji: z.string().optional() + icon: z.string() }) }), contact: defineCollection({