summaryrefslogtreecommitdiff
path: root/examples/blog/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2021-06-28 15:29:16 -0700
committerGravatar GitHub <noreply@github.com> 2021-06-28 15:29:16 -0700
commit5591d4eb9fc70e781804f940fabd334b53ce7056 (patch)
tree9c4c4ebaf708e959a96b1fc9cede9c1fc9cc40b5 /examples/blog/astro.config.mjs
parent7063c04dec48fcabcda104c42d61642a554f6044 (diff)
downloadastro-5591d4eb9fc70e781804f940fabd334b53ce7056.tar.gz
astro-5591d4eb9fc70e781804f940fabd334b53ce7056.tar.zst
astro-5591d4eb9fc70e781804f940fabd334b53ce7056.zip
update the blog example (#565)
Diffstat (limited to 'examples/blog/astro.config.mjs')
-rw-r--r--examples/blog/astro.config.mjs13
1 files changed, 2 insertions, 11 deletions
diff --git a/examples/blog/astro.config.mjs b/examples/blog/astro.config.mjs
index d72db6491..ef2cd38aa 100644
--- a/examples/blog/astro.config.mjs
+++ b/examples/blog/astro.config.mjs
@@ -1,14 +1,5 @@
export default {
- // projectRoot: '.', // Where to resolve all URLs relative to. Useful if you have a monorepo project.
- // pages: './src/pages', // Path to Astro components, pages, and data
- // 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.
- // sitemap: true, // Generate sitemap (set to "false" to disable)
+ sitemap: true,
},
- devOptions: {
- // port: 3000, // The port to run the dev server on.
- // tailwindConfig: '', // Path to tailwind.config.js if used, e.g. './tailwind.config.js'
- },
-};
+}