From f90592d8a106bea418cbd3d8bce9c2d86029f93c Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 9 Apr 2026 08:47:37 +0000 Subject: feat: migrated to Astro 6 --- src/content/config.ts | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/content/config.ts (limited to 'src/content') diff --git a/src/content/config.ts b/src/content/config.ts deleted file mode 100644 index 4277edc..0000000 --- a/src/content/config.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { defineCollection, z } from "astro:content"; - -const blog = defineCollection({ - type: "content", - schema: z.object({ - basedOn: z.optional(z.string()), - dateModified: z.coerce.date(), - datePublished: z.coerce.date(), - description: z.string(), - draft: z.optional(z.boolean()), - lang: z.string(), - title: z.string(), - }), -}); - -export const collections = { blog }; -- cgit v1.2.3