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/frontend/src/content/lessons/config.ts
2025-12-09 17:25:14 +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,
};