mirror of
https://github.com/Kyren223/website.git
synced 2026-03-30 01:31:44 +00:00
7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
import { defineCollection } from 'astro:content';
|
|
import { docsSchema } from '@astrojs/starlight/schema';
|
|
|
|
export const collections = {
|
|
docs: defineCollection({ schema: docsSchema() }),
|
|
};
|