import { defineCollection, z } from "astro:content"; import { glob } from "astro/loaders"; const applets = defineCollection({ loader: glob({ pattern: "**/*.json", base: "./src/applets" }), }); export const collections = { applets };