docs: docs-site initial

This commit is contained in:
3252a8
2026-05-26 16:04:04 +03:00
parent f30e729f1f
commit 5833b18052
14 changed files with 6644 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { defineCollection } from 'astro:content';
import { docsLoader } from '@astrojs/starlight/loaders';
import { docsSchema } from '@astrojs/starlight/schema';
export const collections = {
docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }),
};