diff --git a/www/src/content/docs/docs/introduction/integration/manual.md b/www/src/content/docs/docs/introduction/integration/manual.md index 314e4e47..d002cbdc 100644 --- a/www/src/content/docs/docs/introduction/integration/manual.md +++ b/www/src/content/docs/docs/introduction/integration/manual.md @@ -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", + })], }); ```