mirror of
https://github.com/Snigdha-OS/Snigdha-OS.github.io.git
synced 2025-09-07 21:25:17 +02:00
7 lines
190 B
TypeScript
7 lines
190 B
TypeScript
import { defineCollection } from 'astro:content';
|
|
import { docsSchema } from '@astrojs/starlight/schema';
|
|
|
|
export const collections = {
|
|
docs: defineCollection({ schema: docsSchema() }),
|
|
};
|