From bde658af314a98586fea58cfb90c89cd64e33219 Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Sat, 9 Mar 2024 04:07:58 -0800 Subject: [PATCH] update readme --- packages/starlight-ghostcms/README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/starlight-ghostcms/README.md b/packages/starlight-ghostcms/README.md index 88da96e6..d9cbcd4e 100644 --- a/packages/starlight-ghostcms/README.md +++ b/packages/starlight-ghostcms/README.md @@ -49,7 +49,9 @@ export default defineConfig({ integrations: [ starlight({ plugins: [ - starlightGhostCMS() + starlightGhostCMS({ + ghostURL: "https://ghostdemo.matthiesen.xyz" + }) ], title: 'My Docs', }), @@ -63,7 +65,7 @@ You must also create 2 environment variables in a `.env` file with the following ```env CONTENT_API_KEY=a33da3965a3a9fb2c6b3f63b48 -CONTENT_API_URL=https://ghostdemo.matthiesen.xyz +CONTENT_API_URL=https://ghostdemo.matthiesen.xyz // ghostURL option in `astro.config.mjs` will take priority. (This is fallback option) GITHUB_PERSONAL_TOKEN=ghp_ //OPTIONAL - This is for Astro-Gists if you choose to use it! ```