summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
Diffstat (limited to 'packages')
-rw-r--r--packages/astro/test/fixtures/astro-children/astro.config.mjs8
1 files changed, 5 insertions, 3 deletions
diff --git a/packages/astro/test/fixtures/astro-children/astro.config.mjs b/packages/astro/test/fixtures/astro-children/astro.config.mjs
index e2a209f83..a87cc51c9 100644
--- a/packages/astro/test/fixtures/astro-children/astro.config.mjs
+++ b/packages/astro/test/fixtures/astro-children/astro.config.mjs
@@ -1,5 +1,7 @@
export default {
- extensions: {
- '.jsx': 'preact'
- },
+ renderers: [
+ '@astro-renderer/preact',
+ '@astro-renderer/vue',
+ '@astro-renderer/svelte',
+ ],
};