This commit is contained in:
Adam Matthiesen 2024-01-23 17:08:56 -08:00
parent badcab9751
commit f08f77381c
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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",