diff options
author | 2021-08-11 15:04:09 -0700 | |
---|---|---|
committer | 2021-08-11 15:04:09 -0700 | |
commit | 0f0cc2b9d83ffeee125b85c95d2d51080f21074d (patch) | |
tree | 4960e84e8654108e9c88f8392e1b04a2ce5ab667 /examples/blog-multiple-authors/astro.config.mjs | |
parent | b54c01bf66a75bea7cde909418cc5373e666b7fa (diff) | |
download | astro-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.mjs | 2 |
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: { |