blob: a6651a593c64eece8e8541be3ec276b182fed2e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import { defineConfig } from 'astro/config';
import preact from '@astrojs/preact';
// https://astro.build/config
export default defineConfig({
integrations: [preact()],
site: `http://astro.build`,
});
|