summaryrefslogtreecommitdiff
path: root/examples/with-markdown/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/with-markdown/astro.config.mjs
parent0ae96bb7491a60eb2032bab23377ca54951a67a7 (diff)
downloadastro-240d88aefe66c7d73b9c713c5da42ae789c011ce.tar.gz
astro-240d88aefe66c7d73b9c713c5da42ae789c011ce.tar.zst
astro-240d88aefe66c7d73b9c713c5da42ae789c011ce.zip
fix format (#2736)
Diffstat (limited to 'examples/with-markdown/astro.config.mjs')
-rw-r--r--examples/with-markdown/astro.config.mjs13
1 files changed, 3 insertions, 10 deletions
diff --git a/examples/with-markdown/astro.config.mjs b/examples/with-markdown/astro.config.mjs
index 7de07db07..cad67e3e4 100644
--- a/examples/with-markdown/astro.config.mjs
+++ b/examples/with-markdown/astro.config.mjs
@@ -7,13 +7,6 @@
// You can disable this by removing "@ts-check" and `@type` comments below.
// @ts-check
-export default /** @type {import('astro').AstroUserConfig} */ (
- {
- renderers: [
- "@astrojs/renderer-preact",
- "@astrojs/renderer-react",
- "@astrojs/renderer-svelte",
- "@astrojs/renderer-vue",
- ],
- }
-);
+export default /** @type {import('astro').AstroUserConfig} */ ({
+ renderers: ['@astrojs/renderer-preact', '@astrojs/renderer-react', '@astrojs/renderer-svelte', '@astrojs/renderer-vue'],
+});