summaryrefslogtreecommitdiff
path: root/examples/framework-svelte/astro.config.mjs
blob: 4452ef1015384d2a64296cac877118f6c8fd82e8 (plain) (blame)
1
2
3
4
5
6
7
import { defineConfig } from 'astro/config';

// https://astro.build/config
export default defineConfig({
	// Enable the Svelte renderer to support Svelte components.
	renderers: ['@astrojs/renderer-svelte'],
});