initial commit

This commit is contained in:
grassblock 2025-05-01 16:53:18 +08:00
commit 61511ed28c
28 changed files with 5210 additions and 0 deletions

11
src/content/config.ts Normal file
View file

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