Files
webSostenible/astro.config.mjs
2024-09-27 17:16:25 +02:00

9 lines
223 B
JavaScript

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