summaryrefslogtreecommitdiff
path: root/examples/blog/astro.config.mjs
blob: e514e8de24afdb32be351398077f6e2b8f4569de (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()],
});