This repository has been archived on 2026-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Web-Dev-Lesson-Test/00-Lesson-Site/src/content/lessons/config.ts
MangoPig f9a669ae69 Yes
2025-12-08 23:32:49 +00:00

16 lines
322 B
TypeScript

// Path: 00-Lesson-Site/src/content/lessons/config.ts
import { defineCollection, z } from "astro:content";
const lessonsCollection = defineCollection({
type: "content",
schema: z.object({
title: z.string(),
description: z.string().optional(),
}),
});
export const collections = {
lessons: lessonsCollection,
};