Skip to content

Commit 0566383

Browse files
committed
fix: http to https for security
1 parent e493fe8 commit 0566383

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/sitemap.xml.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export const GET: APIRoute = async ({ site }) => {
2020
const lastmod = new Date().toISOString();
2121

2222
const sitemap = `<?xml version="1.0" encoding="UTF-8"?>
23-
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
23+
<urlset xmlns="https://www.sitemaps.org/schemas/sitemap/0.9">
2424
${staticPages.map(page => ` <url>
2525
<loc>${siteUrl}${page.url}</loc>
2626
<lastmod>${lastmod}</lastmod>

0 commit comments

Comments
 (0)