This commit is contained in:
2025-10-05 13:50:18 +02:00
commit 41f083d69e
71 changed files with 17398 additions and 0 deletions

29
doc/astro.config.mjs Normal file
View File

@@ -0,0 +1,29 @@
// @ts-check
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: "Zod PocketBase",
social: {
github: "https://github.com/gbouteiller/zod-pocketbase",
},
sidebar: [
{
label: "Start here",
autogenerate: { directory: "start-here" },
},
{
label: "Guides",
autogenerate: { directory: "guides" },
},
{
label: "Reference",
autogenerate: { directory: "reference" },
},
],
}),
],
});