This commit is contained in:
Adam Matthiesen 2024-01-26 05:54:36 -08:00
parent 34a1a690cd
commit 62ac72a60e
4 changed files with 37 additions and 4 deletions

View File

@ -29,6 +29,12 @@ import GhostCMS from '@matthiesenxyz/astro-ghostcms';
export default defineConfig({
site: "https://YOUR-DOMAIN-HERE.com",
// THIS WILL DISABLE DEFAULT ROUTE INJECT
integrations: [ GhostCMS({ disableRouteInjection: true })],
integrations: [
GhostCMS({
// You can either set your ghostURL here or as a `.env`/environment variable
ghostURL: "https://ghostdemo.matthiesen.xyz",
disableRouteInjection: true,
})
],
});
```

View File

@ -15,13 +15,19 @@ export default defineConfig({
site: "https://YOUR-DOMAIN-HERE.com",
integrations: [
GhostCMS({
// You can either set your ghostURL here or as a `.env`/environment variable
ghostURL: "https://ghostdemo.matthiesen.xyz",
// Disables default 404 page route
disable404: false,
// Disables default RSS page route and @astrojs/rss integration
disableRSS: false,
// *OPTIONAL* THIS Option allows the user to disable default route
// injections, disabling the default layout and theme all together.
// Allowing the user to still use integration features while building
// off of the included API functions
disableRouteInjection: false // DEFAULT VALUE
disableRouteInjection: false, // DEFAULT VALUE
// *OPTIONAL* Setting this to true will disable the extra info logs
disableConsoleOutput: false // DEFAULT VALUE
disableConsoleOutput: false, // DEFAULT VALUE
// *OPTIONAL* THIS IS THE DEFAULT VALUE
theme: '@matthiesenxyz/astro-ghostcms-theme-default',
// THIS IS TO SHOW SUPPORTED FEATURES FOR MORE INFO SEE

View File

@ -10,7 +10,7 @@ description: 'v3.1.4'
# v3.1.4
Implimented Testing suites, and a bunch off Code Cleanup
Implimented Testing suites, and a bunch of Code Cleanup
### New Stuff

View File

@ -0,0 +1,21 @@
---
title: 'v3.1.5'
date: '01-26-2024 05:50'
versionNumber: '3.1.5'
description: 'v3.1.5'
#image:
# src: '../../assets/starlog-placeholder-2.jpg'
# alt: 'The full Astro logo.'
---
# v3.1.5
Implimented More Tests, and a bunch of Code Cleanup, and some new config options!
### New Stuff
- New Config options! Check the docs!
### Planned Additions
- Skeleton Theme - DIY KIT