From a8efefc12f21fc3b1fe3c32898cd50d0067b93c6 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Tue, 24 Dec 2024 08:42:19 +0000 Subject: Upgrades to Astro 5 --- src/content/config.ts | 13 ------------- 1 file changed, 13 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 599c570..0000000 --- a/src/content/config.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { defineCollection, z } from 'astro:content'; - -const news = defineCollection({ - type: 'content', - schema: z.object({ - title: z.string(), - summary: z.string(), - }), -}); - -export const collections = { - news: news, -}; -- cgit v1.2.3