diff options
Diffstat (limited to 'examples/with-markdown/astro.config.mjs')
-rw-r--r-- | examples/with-markdown/astro.config.mjs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/examples/with-markdown/astro.config.mjs b/examples/with-markdown/astro.config.mjs index dc1697323..c92bf4e72 100644 --- a/examples/with-markdown/astro.config.mjs +++ b/examples/with-markdown/astro.config.mjs @@ -7,7 +7,9 @@ // 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: [], + } +); |