diff options
Diffstat (limited to 'examples/with-markdown/astro.config.mjs')
-rw-r--r-- | examples/with-markdown/astro.config.mjs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/examples/with-markdown/astro.config.mjs b/examples/with-markdown/astro.config.mjs index 7c835f30a..7de07db07 100644 --- a/examples/with-markdown/astro.config.mjs +++ b/examples/with-markdown/astro.config.mjs @@ -9,7 +9,11 @@ // @ts-check export default /** @type {import('astro').AstroUserConfig} */ ( { - // Set "renderers" to "[]" to disable all default, builtin component support. - // renderers: [], + renderers: [ + "@astrojs/renderer-preact", + "@astrojs/renderer-react", + "@astrojs/renderer-svelte", + "@astrojs/renderer-vue", + ], } ); |