mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-24 11:14:23 +01:00
8 lines
266 B
TypeScript
8 lines
266 B
TypeScript
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() }),
|
|
}
|