11 lines
No EOL
232 B
TypeScript
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,
|
|
}; |