summaryrefslogtreecommitdiff
path: root/src/pages/rss.xml.ts
diff options
context:
space:
mode:
authorJoão Augusto Costa Branco Marado Torres <torres.dev@disroot.org>2025-07-06 15:10:35 -0300
committerJoão Augusto Costa Branco Marado Torres <torres.dev@disroot.org>2025-07-06 15:10:35 -0300
commit87df5a27cb34ada02f54dacf4299574f04038612 (patch)
treeedd286add16ec82bc4b8467566ede15a90883a39 /src/pages/rss.xml.ts
parent04bcfc551e3f446d26358971115ac27e34f03e44 (diff)
fix: env name conflict
Signed-off-by: João Augusto Costa Branco Marado Torres <torres.dev@disroot.org>
Diffstat (limited to 'src/pages/rss.xml.ts')
-rw-r--r--src/pages/rss.xml.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/rss.xml.ts b/src/pages/rss.xml.ts
index c07f3bd..85aa079 100644
--- a/src/pages/rss.xml.ts
+++ b/src/pages/rss.xml.ts
@@ -3,7 +3,7 @@ import { getCollection } from "astro:content";
import type { APIContext, APIRoute } from "astro";
import { Blog } from "../lib/collection/schemas.ts";
import { getFirstAuthorEmail } from "../lib/collection/helpers.ts";
-import { env } from "../lib/env.ts";
+import { env } from "../lib/environment.ts";
const { PUBLIC_SITE_TITLE, PUBLIC_SITE_DESCRIPTION, PUBLIC_SITE_URL } = env;