blob: 194e4591765ff8c1682c518bd548508ff0aa7f91 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import { defineConfig } from 'astro/config';
import svelte from '@astrojs/svelte';
// https://astro.build/config
export default defineConfig({
// Enable Svelte to support Svelte components.
integrations: [svelte()],
});
|