diff options
author | 2021-05-26 18:27:26 +0100 | |
---|---|---|
committer | 2021-05-26 18:27:26 +0100 | |
commit | 653ee5ec07f1eaffcd3a9b039029101f90f26453 (patch) | |
tree | 6f6f4771bc022756d0f9f2c458dd6845b711059c | |
parent | 622d1a38f1e91874b3e7c5a67af48a72a014459f (diff) | |
download | astro-653ee5ec07f1eaffcd3a9b039029101f90f26453.tar.gz astro-653ee5ec07f1eaffcd3a9b039029101f90f26453.tar.zst astro-653ee5ec07f1eaffcd3a9b039029101f90f26453.zip |
documentation: post #231 merge renderers are a config option (#249)
* documentation: post #231 merge renderers are a config option
* Update docs/config.md to reorder
-rw-r--r-- | docs/config.md | 7 |
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', + ], }; ``` |