Files
website/src/content.config.ts
Asai Neko 6845bcb208 Impl prettier to project
- Add prettier json config
- Format project with prettier config
- Enable prettier in zed project settings

Signed-off-by: Asai Neko <sugar@sne.moe>
2025-12-08 00:06:01 +08:00

8 lines
272 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() }),
};