astro/examples/framework-svelte/astro.config.mjs

9 lines
223 B
JavaScript
Raw Normal View History

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()],
});