summaryrefslogtreecommitdiff
path: root/examples/blog-multiple-authors/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2021-08-11 15:04:09 -0700
committerGravatar GitHub <noreply@github.com> 2021-08-11 15:04:09 -0700
commit0f0cc2b9d83ffeee125b85c95d2d51080f21074d (patch)
tree4960e84e8654108e9c88f8392e1b04a2ce5ab667 /examples/blog-multiple-authors/astro.config.mjs
parentb54c01bf66a75bea7cde909418cc5373e666b7fa (diff)
downloadastro-0f0cc2b9d83ffeee125b85c95d2d51080f21074d.tar.gz
astro-0f0cc2b9d83ffeee125b85c95d2d51080f21074d.tar.zst
astro-0f0cc2b9d83ffeee125b85c95d2d51080f21074d.zip
Add file-based routing /w dynamic paths (#1010)
* wip: add file-based routing * add pagination tests and nested pagination support
Diffstat (limited to 'examples/blog-multiple-authors/astro.config.mjs')
-rw-r--r--examples/blog-multiple-authors/astro.config.mjs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/blog-multiple-authors/astro.config.mjs b/examples/blog-multiple-authors/astro.config.mjs
index 2c8e9130e..88a052f97 100644
--- a/examples/blog-multiple-authors/astro.config.mjs
+++ b/examples/blog-multiple-authors/astro.config.mjs
@@ -4,7 +4,7 @@ export default {
// dist: './dist', // When running `astro build`, path to final static output
// public: './public', // A folder of static files Astro will copy to the root. Useful for favicons, images, and other files that don’t need processing.
buildOptions: {
- // site: 'http://example.com', // Your public domain, e.g.: https://my-site.dev/. Used to generate sitemaps and canonical URLs.
+ site: 'http://example.com', // Your public domain, e.g.: https://my-site.dev/. Used to generate sitemaps and canonical URLs.
sitemap: true, // Generate sitemap (set to "false" to disable)
},
devOptions: {