summaryrefslogtreecommitdiff
path: root/examples/framework-multiple/astro.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/framework-multiple/astro.config.mjs')
-rw-r--r--examples/framework-multiple/astro.config.mjs8
1 files changed, 7 insertions, 1 deletions
diff --git a/examples/framework-multiple/astro.config.mjs b/examples/framework-multiple/astro.config.mjs
index ce25e5aff..88ceb4f4f 100644
--- a/examples/framework-multiple/astro.config.mjs
+++ b/examples/framework-multiple/astro.config.mjs
@@ -11,5 +11,11 @@ export default {
// port: 3000, // The port to run the dev server on.
// tailwindConfig: '', // Path to tailwind.config.js if used, e.g. './tailwind.config.js'
},
- renderers: ['@astrojs/renderer-preact', '@astrojs/renderer-react', '@astrojs/renderer-svelte', '@astrojs/renderer-vue'],
+ renderers: [
+ '@astrojs/renderer-preact',
+ '@astrojs/renderer-react',
+ '@astrojs/renderer-svelte',
+ '@astrojs/renderer-vue',
+ '@astrojs/renderer-solid',
+ ]
};