diff --git a/app.js b/app.js index 5c5e44d..cbdeda6 100644 --- a/app.js +++ b/app.js @@ -240,7 +240,7 @@ app.get('/sitemap.xml', (req, res) => { let sitemap = `\n\n`; urls.forEach(({ url, lastmod, changefreq, priority }) => { sitemap += ` \n`; - sitemap += ` ${hostname}${url}\n`; + sitemap += ` https://${hostname}${url}\n`; if (lastmod) { sitemap += ` ${lastmod}\n`; }