0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

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
This commit is contained in:
duncanhealy 2021-05-26 18:27:26 +01:00 committed by GitHub
parent 622d1a38f1
commit 653ee5ec07
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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',
],
};
```