This commit is contained in:
Adam Matthiesen 2024-01-31 18:02:48 -08:00
parent 0896cc0926
commit 19e442f937
1 changed files with 5 additions and 1 deletions

View File

@ -27,7 +27,11 @@ import GhostCMS from '@matthiesenxyz/astro-ghostcms';
// https://astro.build/config
export default defineConfig({
site: "https://YOUR-DOMAIN-HERE.com"
integrations: [GhostCMS()],
integrations: [GhostCMS({
// You can either set your ghostURL here or as a `.env`/environment variable
// THIS WILL TAKE PRIORITY
ghostURL: "https://ghostdemo.matthiesen.xyz",
})],
});
```