Files
xyflow/examples/astro-xyflow/astro.config.mjs
2023-10-05 17:28:30 +02:00

9 lines
221 B
JavaScript

import { defineConfig } from 'astro/config';
import react from '@astrojs/react';
import svelte from '@astrojs/svelte';
// https://astro.build/config
export default defineConfig({
integrations: [react(), svelte()],
});