squash and nuke dev

This commit is contained in:
outfoxxed 2026-02-18 02:40:40 -08:00
parent b2d43ad425
commit f26e76c114
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
93 changed files with 33827 additions and 7831 deletions

View file

@ -2,11 +2,11 @@ import { defineCollection, z } from "astro:content";
import { glob } from "astro/loaders";
const guide = defineCollection({
loader: glob({ pattern: "**/*.md", base: "src/guide" }),
schema: z.object({
title: z.string(),
loader: glob({ pattern: "**/*.{md,mdx}", base: "src/guide" }),
schema: z.object({
title: z.string(),
index: z.number(),
}),
}),
});
export const collections = { guide };