diff options
author | 2022-03-08 15:20:04 -0800 | |
---|---|---|
committer | 2022-03-08 15:20:04 -0800 | |
commit | 240d88aefe66c7d73b9c713c5da42ae789c011ce (patch) | |
tree | b57f527cf32477c54be9a323a2159adb2aaad138 /examples/starter/astro.config.mjs | |
parent | 0ae96bb7491a60eb2032bab23377ca54951a67a7 (diff) | |
download | astro-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.mjs | 10 |
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: [], +}); |