mirror of
https://github.com/github/gh-stack.git
synced 2026-09-14 20:26:28 +08:00
11 lines
275 B
TypeScript
11 lines
275 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(),
|
|
}),
|
|
};
|