summaryrefslogtreecommitdiff
path: root/examples/blog/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Drew Powers <1369770+drwpow@users.noreply.github.com> 2021-04-21 14:14:24 -0600
committerGravatar GitHub <noreply@github.com> 2021-04-21 14:14:24 -0600
commita7185735da7413e132f313ff5086db74304d7654 (patch)
treed21ce5c983ccd14a60f3e940a12899487e1aac15 /examples/blog/astro.config.mjs
parent93e207e38baf18c3043f2b19c16451305d636110 (diff)
downloadastro-a7185735da7413e132f313ff5086db74304d7654.tar.gz
astro-a7185735da7413e132f313ff5086db74304d7654.tar.zst
astro-a7185735da7413e132f313ff5086db74304d7654.zip
Add sitemap generation (#120)
* Add sitemap generation * Update README * Fix index handling, sort sitemap * Add --no-sitemap CLI flag (and config option)
Diffstat (limited to 'examples/blog/astro.config.mjs')
-rw-r--r--examples/blog/astro.config.mjs3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/blog/astro.config.mjs b/examples/blog/astro.config.mjs
new file mode 100644
index 000000000..5fc4abd1c
--- /dev/null
+++ b/examples/blog/astro.config.mjs
@@ -0,0 +1,3 @@
+export default {
+ site: 'https://muppet-blog.github.io/',
+};