diff options
author | Valentin Popov <valentin@popov.link> | 2024-09-05 17:55:42 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-09-05 17:55:42 +0300 |
commit | 7ba2de71480c1b568ed8b7d7f693f17774da1684 (patch) | |
tree | 4d468ae27157ad21e137238f2be6ea18b1feb99b /astro.config.mjs | |
parent | 7770a0852c0ba9cb0790d447cb3af0a5bf00e2ba (diff) | |
download | popov.link-7ba2de71480c1b568ed8b7d7f693f17774da1684.tar.xz popov.link-7ba2de71480c1b568ed8b7d7f693f17774da1684.zip |
Added sitemap
Diffstat (limited to 'astro.config.mjs')
-rw-r--r-- | astro.config.mjs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index d779289..b98292c 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,5 +1,7 @@ import { defineConfig } from "astro/config"; +import sitemap from "@astrojs/sitemap"; export default defineConfig({ site: "https://popov.link", + integrations: [sitemap()], }); |