You've already forked AstralRinth
forked from didirus/AstralRinth
* initial docs * more docs work * Update readme + add license * update frontend GH action
7 lines
190 B
TypeScript
7 lines
190 B
TypeScript
import { defineCollection } from 'astro:content';
|
|
import { docsSchema } from '@astrojs/starlight/schema';
|
|
|
|
export const collections = {
|
|
docs: defineCollection({ schema: docsSchema() }),
|
|
};
|