blob: 45f60b01542e20c173efeebce00c60abcc38e9e0 (
plain)
| 1
2
3
4
5
6
 | import { defineCollection } from 'astro:content';
import { docsSchema } from '@astrojs/starlight/schema';
export const collections = {
	docs: defineCollection({ schema: docsSchema() }),
};
 |