2022-03-15 15:27:17 -05:00
|
|
|
import { defineConfig } from 'astro/config';
|
2022-03-18 17:35:45 -05:00
|
|
|
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 11:59:58 -05:00
|
|
|
|
2022-03-15 15:27:17 -05:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2022-03-18 17:35:45 -05:00
|
|
|
// Enable many frameworks to support all different kinds of components.
|
2023-08-11 09:05:02 -05:00
|
|
|
integrations: [
|
|
|
|
preact({ include: ['**/preact/*'] }),
|
|
|
|
solid({ include: ['**/solid/*'] }),
|
|
|
|
react({ include: ['**/react/*'] }),
|
|
|
|
svelte(),
|
|
|
|
vue(),
|
|
|
|
],
|
2021-08-23 16:07:03 -05:00
|
|
|
});
|