mercury/src/content/config.ts
2025-05-01 16:53:18 +08:00

11 lines
No EOL
232 B
TypeScript

import { defineCollection } from 'astro:content';
import { blogs } from './blog/_schemas';
const blogCollection = defineCollection({
type: 'content',
schema: blogs,
});
export const collections = {
'blog': blogCollection,
};