summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/framework-multiple/astro.config.mjs2
-rw-r--r--examples/snowpack/astro.config.mjs1
-rw-r--r--examples/starter/astro.config.mjs10
-rw-r--r--examples/with-markdown/astro.config.mjs10
4 files changed, 13 insertions, 10 deletions
diff --git a/examples/framework-multiple/astro.config.mjs b/examples/framework-multiple/astro.config.mjs
index d447844e8..b5fe6a073 100644
--- a/examples/framework-multiple/astro.config.mjs
+++ b/examples/framework-multiple/astro.config.mjs
@@ -9,5 +9,5 @@
// @ts-check
export default /** @type {import('astro').AstroUserConfig} */ ({
// Enable many renderers to support all different kinds of components.
- renderers: ['@astrojs/renderer-preact', '@astrojs/renderer-react', '@astrojs/renderer-svelte', '@astrojs/renderer-vue','@astrojs/renderer-solid' ],
+ renderers: ['@astrojs/renderer-preact', '@astrojs/renderer-react', '@astrojs/renderer-svelte', '@astrojs/renderer-vue', '@astrojs/renderer-solid'],
});
diff --git a/examples/snowpack/astro.config.mjs b/examples/snowpack/astro.config.mjs
index ec76a97c8..14b5d565a 100644
--- a/examples/snowpack/astro.config.mjs
+++ b/examples/snowpack/astro.config.mjs
@@ -19,4 +19,3 @@ export default /** @type {import('astro').AstroUserConfig} */ ({
'@astrojs/renderer-preact',
],
});
-
diff --git a/examples/starter/astro.config.mjs b/examples/starter/astro.config.mjs
index dc1697323..c92bf4e72 100644
--- a/examples/starter/astro.config.mjs
+++ b/examples/starter/astro.config.mjs
@@ -7,7 +7,9 @@
// You can disable this by removing "@ts-check" and `@type` comments below.
// @ts-check
-export default /** @type {import('astro').AstroUserConfig} */ ({
- // Set "renderers" to "[]" to disable all default, builtin component support.
- // renderers: [],
-});
+export default /** @type {import('astro').AstroUserConfig} */ (
+ {
+ // Set "renderers" to "[]" to disable all default, builtin component support.
+ // renderers: [],
+ }
+);
diff --git a/examples/with-markdown/astro.config.mjs b/examples/with-markdown/astro.config.mjs
index dc1697323..c92bf4e72 100644
--- a/examples/with-markdown/astro.config.mjs
+++ b/examples/with-markdown/astro.config.mjs
@@ -7,7 +7,9 @@
// You can disable this by removing "@ts-check" and `@type` comments below.
// @ts-check
-export default /** @type {import('astro').AstroUserConfig} */ ({
- // Set "renderers" to "[]" to disable all default, builtin component support.
- // renderers: [],
-});
+export default /** @type {import('astro').AstroUserConfig} */ (
+ {
+ // Set "renderers" to "[]" to disable all default, builtin component support.
+ // renderers: [],
+ }
+);