summaryrefslogtreecommitdiff
path: root/examples/blog/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar FredKSchott <FredKSchott@users.noreply.github.com> 2021-07-20 04:07:49 +0000
committerGravatar GitHub Actions <actions@github.com> 2021-07-20 04:07:49 +0000
commit50f82e1a53ec5329990ee66fe62adba3fcbcb9e6 (patch)
treebee01a458fe44e48a396abcd51f912f09d295f55 /examples/blog/astro.config.mjs
parent07e533402e234d31b7cf9741bf2d08c32eda88c0 (diff)
downloadastro-50f82e1a53ec5329990ee66fe62adba3fcbcb9e6.tar.gz
astro-50f82e1a53ec5329990ee66fe62adba3fcbcb9e6.tar.zst
astro-50f82e1a53ec5329990ee66fe62adba3fcbcb9e6.zip
[ci] yarn format
Diffstat (limited to 'examples/blog/astro.config.mjs')
-rw-r--r--examples/blog/astro.config.mjs6
1 files changed, 2 insertions, 4 deletions
diff --git a/examples/blog/astro.config.mjs b/examples/blog/astro.config.mjs
index e6e926d7b..2c8e9130e 100644
--- a/examples/blog/astro.config.mjs
+++ b/examples/blog/astro.config.mjs
@@ -5,13 +5,11 @@ export default {
// 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, // Generate sitemap (set to "false" to disable)
},
devOptions: {
// port: 3000, // The port to run the dev server on.
// tailwindConfig: '', // Path to tailwind.config.js if used, e.g. './tailwind.config.js'
},
- renderers: [
- '@astrojs/renderer-preact'
- ]
+ renderers: ['@astrojs/renderer-preact'],
};