init
This commit is contained in:
29
doc/astro.config.mjs
Normal file
29
doc/astro.config.mjs
Normal 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" },
|
||||
},
|
||||
],
|
||||
}),
|
||||
],
|
||||
});
|
||||
Reference in New Issue
Block a user