Files
astro/examples/framework-multiple/astro.config.mjs
Emanuele Stoppa c2a347d8a6 chore(deps): upgrade development tools (#14040)
Co-authored-by: alexanderniebuhr <45965090+alexanderniebuhr@users.noreply.github.com>
2025-07-24 12:31:23 +01:00

21 lines
538 B
JavaScript

// @ts-check
import preact from '@astrojs/preact';
import react from '@astrojs/react';
import solid from '@astrojs/solid-js';
import svelte from '@astrojs/svelte';
import vue from '@astrojs/vue';
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
// Enable many frameworks to support all different kinds of components.
integrations: [
preact({ include: ['**/preact/*'] }),
solid({ include: ['**/solid/*'] }),
react({ include: ['**/react/*'] }),
svelte(),
vue(),
],
});