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