mirror of
https://github.com/web3privacy/docs
synced 2024-10-15 18:46:26 +02:00
6 lines
190 B
TypeScript
6 lines
190 B
TypeScript
import { defineCollection } from 'astro:content';
|
|
import { docsSchema } from '@astrojs/starlight/schema';
|
|
|
|
export const collections = {
|
|
docs: defineCollection({ schema: docsSchema() }),
|
|
};
|