blob: 2b6a0fe14062ef453bf6ae0edb89a6b641f61992 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { defineConfig } from 'astro/config';
import preact from '@astrojs/preact';
// https://astro.build/config
export default defineConfig({
// Enable the Preact integration to support Preact JSX components.
integrations: [preact()],
site: `http://astro.build`
});
|