Files
zod-pocketbase-continue/doc/astro.config.mjs
2025-10-05 13:50:18 +02:00

30 lines
666 B
JavaScript

// @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" },
},
],
}),
],
});