astro/examples/framework-multiple/astro.config.mjs

13 lines
428 B
JavaScript
Raw Normal View History

import { defineConfig } from 'astro/config';
import preact from '@astrojs/preact';
import react from '@astrojs/react';
import svelte from '@astrojs/svelte';
import vue from '@astrojs/vue';
import solid from '@astrojs/solid-js';
2022-08-13 16:59:58 +00:00
// https://astro.build/config
export default defineConfig({
// Enable many frameworks to support all different kinds of components.
2022-08-13 16:59:58 +00:00
integrations: [preact(), react(), svelte(), vue(), solid()],
});