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 };