Experiment to rebuild Diffuse using web applets.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 8 lines 244 B view raw
1import { defineCollection } from "astro:content"; 2import { glob } from "astro/loaders"; 3 4const manifests = defineCollection({ 5 loader: glob({ pattern: "**/_manifest.json", base: "./src/pages" }), 6}); 7 8export const collections = { manifests };