summaryrefslogtreecommitdiff
path: root/src/content.config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/content.config.ts')
-rw-r--r--src/content.config.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/content.config.ts b/src/content.config.ts
new file mode 100644
index 0000000..af3f25d
--- /dev/null
+++ b/src/content.config.ts
@@ -0,0 +1,14 @@
+import { glob } from 'astro/loaders';
+import { defineCollection, z } from 'astro:content';
+
+const news = defineCollection({
+ loader: glob({ pattern: '**/*.(md|mdx|html)', base: './src/content/news' }),
+ schema: z.object({
+ title: z.string(),
+ summary: z.string(),
+ }),
+});
+
+export const collections = {
+ news,
+};