summaryrefslogtreecommitdiff
path: root/examples/starter/astro.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/starter/astro.config.mjs')
-rw-r--r--examples/starter/astro.config.mjs9
1 files changed, 4 insertions, 5 deletions
diff --git a/examples/starter/astro.config.mjs b/examples/starter/astro.config.mjs
index dc8566d60..dc1697323 100644
--- a/examples/starter/astro.config.mjs
+++ b/examples/starter/astro.config.mjs
@@ -7,8 +7,7 @@
// You can disable this by removing "@ts-check" and `@type` comments below.
// @ts-check
-export default /** @type {import('astro').AstroUserConfig} */ (
- {
- // ...
- }
-);
+export default /** @type {import('astro').AstroUserConfig} */ ({
+ // Set "renderers" to "[]" to disable all default, builtin component support.
+ // renderers: [],
+});