blob: 39670fcbd44603bfd3d8d598bcc72e122782c3d6 (
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`
});
|