diff --git a/astro.config.mjs b/astro.config.mjs index e306d2b..c26d272 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -39,12 +39,12 @@ export default defineConfig({ // About page else if (item.url.includes('/about')) { item.priority = 0.8; - item.changefreq = 'quarterly'; + item.changefreq = 'monthly' } // Contact page gets lower priority else if (item.url.includes('/contact')) { item.priority = 0.7; - item.changefreq = 'quarterly'; + item.changefreq = 'monthly'; } return item;