aboutsummaryrefslogtreecommitdiff
path: root/examples/framework-multiple/astro.config.mjs
blob: 90f8b2ca447d4399cb878d255e5289d738da13e0 (plain) (blame)
1
2
3
4
5
6
7
import { defineConfig } from 'astro/config';

// https://astro.build/config
export default defineConfig({
	// Enable many renderers to support all different kinds of components.
	renderers: ['@astrojs/renderer-preact', '@astrojs/renderer-react', '@astrojs/renderer-svelte', '@astrojs/renderer-vue', '@astrojs/renderer-solid'],
});