beta-repo-setup
fulldev-ui/beta-repo-setupFreeUtility
fulldev/ui publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by fulldev/ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://ui.full.dev/r/beta-repo-setup.jsonSource
1import { defineCollection } from "astro:content"2import { glob } from "astro/loaders"34import { globalSchema } from "@/schemas/global"5import { pageSchema } from "@/schemas/page"67export const collections = {8 pages: defineCollection({9 loader: glob({10 pattern: "**/[^_]*.{md,mdx}",11 base: "src/content/pages",12 }),13 schema: pageSchema,14 }),15 globals: defineCollection({16 loader: glob({17 pattern: "**/[^_]*.{yaml,yml,json}",18 base: "src/content/globals",19 }),20 schema: globalSchema,21 }),22}
What it pulls in
Other registry items
