mirror of
https://github.com/papra-hq/papra.git
synced 2025-12-21 12:09:39 -06:00
11 lines
281 B
TypeScript
11 lines
281 B
TypeScript
import { docsLoader } from '@astrojs/starlight/loaders';
|
|
import { docsSchema } from '@astrojs/starlight/schema';
|
|
import { defineCollection } from 'astro:content';
|
|
|
|
export const collections = {
|
|
docs: defineCollection({
|
|
loader: docsLoader(),
|
|
schema: docsSchema(),
|
|
}),
|
|
};
|