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

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