summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/config.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/config.md b/docs/config.md
index c14e52854..2c25cd6ed 100644
--- a/docs/config.md
+++ b/docs/config.md
@@ -31,5 +31,12 @@ export default {
/** Path to tailwind.config.js if used, e.g. './tailwind.config.js' */
tailwindConfig: undefined,
},
+ /** default array of rendering packages inserted into runtime */
+ renderers: [
+ '@astro-renderer/preact',
+ '@astro-renderer/react',
+ '@astro-renderer/svelte',
+ '@astro-renderer/vue',
+ ],
};
```