summaryrefslogtreecommitdiff
path: root/examples/blog/astro.config.mjs
blob: 08916b1fea784fee9736de52f53246a2271209f9 (plain) (blame)
1
2
3
4
5
6
7
import { defineConfig } from 'astro/config';
import preact from '@astrojs/preact';

// https://astro.build/config
export default defineConfig({
	integrations: [preact()],
});