mirror of
https://github.com/TheTaz25/denis.ergin.git
synced 2025-07-06 08:28:51 +00:00
12 lines
No EOL
238 B
TypeScript
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,
|
|
} |