remove unused config option

This commit is contained in:
Adam Matthiesen 2024-03-05 20:26:43 -08:00
parent f7816e69a6
commit 70b6fd2d16
1 changed files with 0 additions and 15 deletions

View File

@ -3,21 +3,6 @@ import { z } from "astro/zod";
const configSchema = z
.object({
/** OPTIONAL - Either set the URL in your .env or put it here
* @example
* // https://astro.build/config
* export default defineConfig({
* integrations: [
* starlight({
* plugins: [
* starlightGhost({
* ghostURL: "https://ghostdemo.matthiesen.xyz"
* })
* ],
* })
* ],
* }); */
ghostURL: z.string().url("Must be a URL").optional(),
/**
* The number of blog posts to display per page in the blog post list.
*/