1
0
Fork 0
mirror of https://github.com/TheTaz25/denis.ergin.git synced 2025-07-06 08:28:51 +00:00
denis.ergin/src/content/config.ts
2024-09-17 08:55:20 +02:00

12 lines
No EOL
238 B
TypeScript

import { defineCollection, z } from 'astro:content';
const skillCollection = defineCollection({
type: 'data',
schema: z.object({
skills: z.array(z.string())
}),
});
export const collections = {
'skills': skillCollection,
}