From 3013f352570439832075bab19c9ae91ec6ab98ac Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero <94913521+arielcostas@users.noreply.github.com> Date: Mon, 23 Dec 2024 14:13:29 +0100 Subject: Update to astro 5 --- src/content/config.ts | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src/content/config.ts (limited to 'src/content/config.ts') diff --git a/src/content/config.ts b/src/content/config.ts deleted file mode 100644 index d0d1d70..0000000 --- a/src/content/config.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { defineCollection, z } from 'astro:content'; - -const blogCollection = defineCollection({ - type: 'content', - schema: z.object({ - title: z.string(), - metaDescription: z.string(), - publishedAt: z.date() - }) -}); - -export const collections = { - 'blog': blogCollection -}; -- cgit v1.3