fix: 🐛 Bug: Starlight-GhostCMS on line 113 of ghostAPI.ts #89

Merged
create-issue-branch[bot] merged 4 commits from issue-88-Bug_Starlight-GhostCMS_on_lin into main 2024-03-09 12:11:54 +00:00
1 changed files with 4 additions and 2 deletions
Showing only changes of commit bde658af31 - Show all commits

View File

@ -49,7 +49,9 @@ export default defineConfig({
integrations: [ integrations: [
starlight({ starlight({
plugins: [ plugins: [
starlightGhostCMS() starlightGhostCMS({
ghostURL: "https://ghostdemo.matthiesen.xyz"
})
], ],
title: 'My Docs', title: 'My Docs',
}), }),
@ -63,7 +65,7 @@ You must also create 2 environment variables in a `.env` file with the following
```env ```env
CONTENT_API_KEY=a33da3965a3a9fb2c6b3f63b48 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! GITHUB_PERSONAL_TOKEN=ghp_ //OPTIONAL - This is for Astro-Gists if you choose to use it!
``` ```