From de3d09e1debd7dbc9fe7a9a047510dd4f9c3d11f Mon Sep 17 00:00:00 2001 From: Raven Scott Date: Thu, 26 Sep 2024 00:23:19 -0400 Subject: [PATCH] fix sitemap --- app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app.js b/app.js index 71774ee..0c25ab6 100644 --- a/app.js +++ b/app.js @@ -242,9 +242,9 @@ app.get('/sitemap.xml', (req, res) => { // Static URLs (e.g., homepage, about, contact) const staticUrls = [ - { url: '/', changefreq: 'weekly', priority: 1.0 }, - { url: '/about', changefreq: 'monthly', priority: 0.8 }, - { url: '/contact', changefreq: 'monthly', priority: 0.8 } + { url: 'https://raven-scott.fyi/', changefreq: 'weekly', priority: 1.0 }, + { url: 'https://raven-scott.fyi/about', changefreq: 'monthly', priority: 0.8 }, + { url: 'https://raven-scott.fyi/contact', changefreq: 'monthly', priority: 0.8 } ]; // Dynamic URLs (e.g., blog posts)