diff options
author | 2021-04-21 14:14:24 -0600 | |
---|---|---|
committer | 2021-04-21 14:14:24 -0600 | |
commit | a7185735da7413e132f313ff5086db74304d7654 (patch) | |
tree | d21ce5c983ccd14a60f3e940a12899487e1aac15 /examples/blog/astro.config.mjs | |
parent | 93e207e38baf18c3043f2b19c16451305d636110 (diff) | |
download | astro-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.mjs | 3 |
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/', +}; |