Experiment to rebuild Diffuse using web applets.
0
fork

Configure Feed

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

at e4e7e07e35690ba5a05f280bde2b5bfa6cd3c721 8 lines 237 B view raw
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 };