update readme

This commit is contained in:
Adam Matthiesen 2024-03-03 08:58:22 -08:00
parent 5f7ac8e4a6
commit 657cfe7568
1 changed files with 14 additions and 1 deletions

View File

@ -59,7 +59,20 @@ import GhostCMS from '@matthiesenxyz/astro-ghostcms';
// https://astro.build/config
export default defineConfig({
site: "https://YOUR-DOMAIN-HERE.com"
integrations: [GhostCMS()],
integrations: [
GhostCMS({
// Config Options
ghostURL: "http://example.com"; // Recommended to set here, Can also set in .env as CONTENT_API_URL
disableThemeProvider: false; // OPTIONAL - Default False
ThemeProvider: { // Allows you to pass config options to our ThemeProvider if enabled.
theme: "@matthiesenxyz/astro-ghostcms-theme-default"; // OPTIONAL - Default Theme shown.
};
disableDefault404: false; // Allows the user to disable the default `/404 page, to be able to create their own under `/src/pages/404.astro`.
enableRSSFeed: true; // Allows the user to Enable or disable RSS Feed Generation. Default: true
enableOGImages: true; // Allows the user to Enable or disable OG Image Generation. Default: true
fullConsoleLogs: false; // Show the full Log output from All parts of Astro-GhostCMS
})
],
});
```