aboutsummaryrefslogtreecommitdiff
path: root/src/pages/feed.xml.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/feed.xml.js')
-rw-r--r--src/pages/feed.xml.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/feed.xml.js b/src/pages/feed.xml.js
index a509386..c837202 100644
--- a/src/pages/feed.xml.js
+++ b/src/pages/feed.xml.js
@@ -6,7 +6,7 @@ export async function GET(context) {
return rss({
customData: `<language>ru-ru</language>`,
- description: "Tech insights and coding best practices from an OpenSource enthusiast and ethical hacker.",
+ description: import.meta.env.DEFAULT_DESCRIPTION,
items: posts.map((post) => ({
customData: post.data.customData,
description: post.data.description,
@@ -15,6 +15,6 @@ export async function GET(context) {
title: post.data.title,
})),
site: context.site,
- title: "Valentin Popov’s Technology Blog",
+ title: import.meta.env.DEFAULT_TITLE,
});
}