From 19e442f93755a102ebbb830acb74ecf92c7c57bc Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Wed, 31 Jan 2024 18:02:48 -0800 Subject: [PATCH] up docs --- .../content/docs/docs/introduction/integration/manual.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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", + })], }); ```