From d22bda5c198bd60f1fd016ed9f1b8469f0dddf11 Mon Sep 17 00:00:00 2001 From: Ayo Ayco Date: Thu, 8 Aug 2024 18:34:50 +0200 Subject: [PATCH] fix: prevent double entry to site map --- astro.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astro.config.mjs b/astro.config.mjs index 501c869..41ae493 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -7,7 +7,7 @@ export default defineConfig({ site: 'https://ayo.ayco.io', integrations: [sitemap( { - customPages: ['https://ayo.ayco.io/threads'] + customPages: ['https://ayo.ayco.io/threads/'] } )] });