Select the types of activity you want to include in your feed.
1import { defineCollection, z } from "astro:content"; 2import { glob } from "astro/loaders"; 3 4const applets = defineCollection({ 5 loader: glob({ pattern: "**/*.json", base: "./src/applets" }), 6}); 7 8export const collections = { applets };