astro.config.mjs 223 B

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