diff options
| author | Yuval Adam <_@yuv.al> | 2025-06-17 13:37:41 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-06-17 13:37:41 +0200 |
| commit | 6e8655a416e75f6a0f8e01a7dd800d9a43d1daf9 (patch) | |
| tree | adf9cc1bcfba70eed16419696cf8fbb1123b51fe /astro.config.mjs | |
| parent | be7b305bf60e082de6c5513eaac30d287e138bf1 (diff) | |
Add sitemap
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index a0f8daa..aea7ec0 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -5,13 +5,15 @@ import tailwindcss from '@tailwindcss/vite'; import react from '@astrojs/react'; +import sitemap from '@astrojs/sitemap'; + // https://astro.build/config export default defineConfig({ + site: 'https://cidr.xyz', vite: { plugins: [tailwindcss()] }, - - integrations: [react()], + integrations: [react(), sitemap()], devToolbar: { enabled: false } |
