From 70b6fd2d1657cf800d70f703b7ba9cb64f6f9fbf Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Tue, 5 Mar 2024 20:26:43 -0800 Subject: [PATCH] remove unused config option --- packages/starlight-ghostcms/src/schemas/config.ts | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/packages/starlight-ghostcms/src/schemas/config.ts b/packages/starlight-ghostcms/src/schemas/config.ts index 19c55fd8..b2f617df 100644 --- a/packages/starlight-ghostcms/src/schemas/config.ts +++ b/packages/starlight-ghostcms/src/schemas/config.ts @@ -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. */