summaryrefslogtreecommitdiff
path: root/examples/starter/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Peter Singh <drgaud@hotmail.com> 2021-09-01 02:09:16 +0100
committerGravatar GitHub <noreply@github.com> 2021-08-31 18:09:16 -0700
commitb22755d59e1e1530dc6da0daca976b82fa381a4a (patch)
tree09e99cd822d9e233bb960e9240de26539e0de7e5 /examples/starter/astro.config.mjs
parent66734b75f1e50c47515e5bf1650c8eeb1615ef70 (diff)
downloadastro-b22755d59e1e1530dc6da0daca976b82fa381a4a.tar.gz
astro-b22755d59e1e1530dc6da0daca976b82fa381a4a.tar.zst
astro-b22755d59e1e1530dc6da0daca976b82fa381a4a.zip
Checked the astro configs for the templates, (#1282)
* Checked the astro configs for the templates, * Update astro.config.mjs * Update package.json Co-authored-by: Fred K. Schott <fkschott@gmail.com>
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: [],
+});