2022-03-15 15:27:17 -05:00
|
|
|
import { defineConfig } from 'astro/config';
|
2022-03-18 15:35:45 -07:00
|
|
|
import preact from '@astrojs/preact';
|
|
|
|
import react from '@astrojs/react';
|
|
|
|
import svelte from '@astrojs/svelte';
|
|
|
|
import vue from '@astrojs/vue';
|
2021-09-01 02:09:16 +01:00
|
|
|
|
2022-03-15 15:27:17 -05:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2022-03-18 15:35:45 -07:00
|
|
|
// Enable many frameworks to support all different kinds of components.
|
|
|
|
integrations: [preact(), react(), svelte(), vue()],
|
2022-03-08 15:20:04 -08:00
|
|
|
});
|