diff options
Diffstat (limited to 'examples/with-markdown/astro.config.mjs')
-rw-r--r-- | examples/with-markdown/astro.config.mjs | 13 |
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'], +}); |