Add Changeset and update readme to show new options
This commit is contained in:
parent
af6a8fa2b9
commit
1e3940fbe4
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
"@matthiesenxyz/astro-ghostcms-brutalbyelian": patch
|
||||||
|
"@matthiesenxyz/astro-ghostcms-theme-default": patch
|
||||||
|
"@matthiesenxyz/astro-ghostcms-catppuccin": patch
|
||||||
|
"@matthiesenxyz/astro-ghostcms": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Adds a toggleswitch to allow users to disable astro-remote usage for rendering ghost-content
|
|
@ -66,6 +66,9 @@ export default defineConfig({
|
||||||
ThemeProvider: { // Allows you to pass config options to our ThemeProvider if enabled.
|
ThemeProvider: { // Allows you to pass config options to our ThemeProvider if enabled.
|
||||||
disableThemeProvider: false, // OPTIONAL - Default False
|
disableThemeProvider: false, // OPTIONAL - Default False
|
||||||
theme: "@matthiesenxyz/astro-ghostcms-theme-default", // OPTIONAL - Default Theme shown.
|
theme: "@matthiesenxyz/astro-ghostcms-theme-default", // OPTIONAL - Default Theme shown.
|
||||||
|
astroRemote: {
|
||||||
|
enable: true // OPTIONAL - Default True, Allows the user to switch to standard <Fragment> html rendering if they are having issues with Astro-remote
|
||||||
|
}
|
||||||
};
|
};
|
||||||
disableDefault404: false, // Allows the user to disable the default `/404 page, to be able to create their own under `/src/pages/404.astro`.
|
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
|
enableRSSFeed: true, // Allows the user to Enable or disable RSS Feed Generation. Default: true
|
||||||
|
|
Loading…
Reference in New Issue