blob: cd54d60f804d20c4b1fcc03c7402f6a33c0b3385 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import vue from '@astrojs/vue';
// https://astro.build/config
export default defineConfig({
integrations: [react({
experimentalReactChildren: true,
}), vue()],
});
|