mirror of
https://github.com/sky22333/hubproxy.git
synced 2026-08-28 19:46:44 +08: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() }),
|
|
}
|