Files
webSostenible/astro.config.mjs
2024-10-01 09:31:50 +02:00

10 lines
268 B
JavaScript

import { defineConfig } from 'astro/config';
import svelte from '@astrojs/svelte';
import mdx from '@astrojs/mdx';
// https://astro.build/config
export default defineConfig({
// Enable Svelte to support Svelte components.
integrations: [svelte(), mdx()],
});