summaryrefslogtreecommitdiff
path: root/examples/starter/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2022-03-08 15:20:04 -0800
committerGravatar GitHub <noreply@github.com> 2022-03-08 15:20:04 -0800
commit240d88aefe66c7d73b9c713c5da42ae789c011ce (patch)
treeb57f527cf32477c54be9a323a2159adb2aaad138 /examples/starter/astro.config.mjs
parent0ae96bb7491a60eb2032bab23377ca54951a67a7 (diff)
downloadastro-240d88aefe66c7d73b9c713c5da42ae789c011ce.tar.gz
astro-240d88aefe66c7d73b9c713c5da42ae789c011ce.tar.zst
astro-240d88aefe66c7d73b9c713c5da42ae789c011ce.zip
fix format (#2736)
Diffstat (limited to 'examples/starter/astro.config.mjs')
-rw-r--r--examples/starter/astro.config.mjs10
1 files changed, 4 insertions, 6 deletions
diff --git a/examples/starter/astro.config.mjs b/examples/starter/astro.config.mjs
index 32ef04fb7..a5fc95e58 100644
--- a/examples/starter/astro.config.mjs
+++ b/examples/starter/astro.config.mjs
@@ -7,9 +7,7 @@
// 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: [],
+});