blob: d4461d39697d9396775909f98741a7826ff6943e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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';
import lit from '@astrojs/lit';
// https://astro.build/config
export default defineConfig({
// Enable many frameworks to support all different kinds of components.
integrations: [preact(), react(), svelte(), vue(), solid(), lit()],
});
|