From 2bcfba0fa4f32ef1f68888e6a8ce9fa80d41831a Mon Sep 17 00:00:00 2001 From: vcoppe Date: Mon, 8 Jul 2024 19:17:03 +0200 Subject: [PATCH] fix sitemap --- website/src/lib/sitemap.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/lib/sitemap.ts b/website/src/lib/sitemap.ts index d1ecf26a..0f748f9e 100644 --- a/website/src/lib/sitemap.ts +++ b/website/src/lib/sitemap.ts @@ -6,7 +6,7 @@ function generateSitemap() { const pages = glob.sync('*.html', { cwd: 'build' }); let sitemap = '\n'; - sitemap += ' xmlns:xhtml="http://www.w3.org/1999/xhtml">\n'; + sitemap += '\n'; pages.forEach((page) => { const url = page.replace('.html', '').replace('index', '');