From 1e3940fbe452d3c67621edcb0969550f7d4cccc3 Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Tue, 12 Mar 2024 23:19:20 -0700 Subject: [PATCH] Add Changeset and update readme to show new options --- .changeset/mean-drinks-heal.md | 8 ++++++++ packages/astro-ghostcms/README.md | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 .changeset/mean-drinks-heal.md diff --git a/.changeset/mean-drinks-heal.md b/.changeset/mean-drinks-heal.md new file mode 100644 index 00000000..365d9ac1 --- /dev/null +++ b/.changeset/mean-drinks-heal.md @@ -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 diff --git a/packages/astro-ghostcms/README.md b/packages/astro-ghostcms/README.md index cba98a86..519a4ae9 100644 --- a/packages/astro-ghostcms/README.md +++ b/packages/astro-ghostcms/README.md @@ -66,6 +66,9 @@ export default defineConfig({ ThemeProvider: { // Allows you to pass config options to our ThemeProvider if enabled. disableThemeProvider: false, // OPTIONAL - Default False theme: "@matthiesenxyz/astro-ghostcms-theme-default", // OPTIONAL - Default Theme shown. + astroRemote: { + enable: true // OPTIONAL - Default True, Allows the user to switch to standard 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`. enableRSSFeed: true, // Allows the user to Enable or disable RSS Feed Generation. Default: true