From b9992ead6124f8151eb4a5940577018726baeffb Mon Sep 17 00:00:00 2001 From: Jalil Arfaoui Date: Tue, 17 Feb 2026 08:57:07 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20du=20champ=20lang=20=C3=A0=20la=20colle?= =?UTF-8?q?ction=20photoBlogPosts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/content/config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/content/config.ts b/src/content/config.ts index ad14c5d..f595e76 100644 --- a/src/content/config.ts +++ b/src/content/config.ts @@ -75,6 +75,7 @@ const photoBlogPostsCollection = defineCollection({ tags: z.array(z.string()).optional(), featured: z.boolean().default(false), draft: z.boolean().default(false), + lang: z.enum(['fr', 'en', 'ar']).default('fr'), }), });