Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol. wisp.place
at main 269 B view raw
1import { defineCollection } from 'astro:content'; 2import { docsLoader } from '@astrojs/starlight/loaders'; 3import { docsSchema } from '@astrojs/starlight/schema'; 4 5export const collections = { 6 docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }), 7};