Florian Bouillon 09ed4c487d
Some checks failed
Build, check & Test / run (push) Failing after 39s
feat: first version
Signed-off-by: Florian BOUILLON <f.bouillon@aptatio.com>
2023-07-20 17:41:16 +02:00

16 lines
474 B
TypeScript

// 1. Import utilities from `astro:content`
// import { defineCollection, z } from 'astro:content'
// 2. Define your collection(s)
// const docsCollection = defineCollection({
// type: 'content',
// schema: z.object({
// title: z.string()
// })
// })
// 3. Export a single `collections` object to register your collection(s)
// This key should match your collection directory name in "src/content"
// export const collections = {
// 'docs': docsCollection,
// };