diff --git a/packages/astro-ghostcms/index.ts b/packages/astro-ghostcms/index.ts index 1ee786ee..ee3cf052 100644 --- a/packages/astro-ghostcms/index.ts +++ b/packages/astro-ghostcms/index.ts @@ -106,7 +106,7 @@ export default function GhostCMS(options: UserConfig): AstroIntegration { injectRoute({ pattern: '/404', - entrypoint: `${IC.PKG}/404.astro` + entrypoint: IC.PKG+'/404.astro' }); injectRoute({ @@ -149,7 +149,7 @@ export default function GhostCMS(options: UserConfig): AstroIntegration { if(!logs) {logger.info(IC.IIR + "@astrojs/rss")} injectRoute({ pattern: '/rss.xml', - entrypoint: `${IC.PKG}/rss.xml.js` + entrypoint: IC.PKG+'/rss.xml.js' }); // IMPORT INTEGRATION: @ASTROJS/SITEMAP diff --git a/packages/astro-ghostcms/package.json b/packages/astro-ghostcms/package.json index d247019b..13493375 100644 --- a/packages/astro-ghostcms/package.json +++ b/packages/astro-ghostcms/package.json @@ -1,7 +1,7 @@ { "name": "@matthiesenxyz/astro-ghostcms", "description": "Astro GhostCMS integration to allow easier importing of GhostCMS Content", - "version": "3.0.1", + "version": "3.0.2", "homepage": "https://astro-ghostcms.xyz/", "type": "module", "license": "MIT",