fries-website/src/content/config.ts

12 lines
321 B
TypeScript

import { defineCollection } from "astro:content";
const homepageCollection = defineCollection({});
const friendsCollection = defineCollection({});
const projectsCollection = defineCollection({});
export const collections = {
homepage: homepageCollection,
friends: friendsCollection,
projects: projectsCollection,
};