From 24ff1bc35e93add1bd0cb83a27c5701d2e31b67a Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sun, 5 Jun 2022 16:01:18 -0500 Subject: [PATCH] Add test sitemap pages --- astro.config.mjs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index 1fd8d97..f8be3f9 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -21,13 +21,18 @@ export default defineConfig({ dist: new URL('./dist/', import.meta.url) }), // Astro Vue Reference - // https://github.com/withastro/astro/blob/main/packages/integrations/sitemap/src/index.ts // https://github.com/withastro/astro/tree/main/packages/integrations/vue vue(), tailwind(), // Sitemap Reference + // https://github.com/withastro/astro/blob/main/packages/integrations/sitemap/src/index.ts // https://github.com/withastro/astro/tree/main/packages/integrations/sitemap#configuration - sitemap() + sitemap({ + customPages: [ + '/relative-url', + 'https://doesitarm.com/absolute-url', + ] + }) ], // Vite options // https://docs.astro.build/en/reference/configuration-reference/#vite