aboutsummaryrefslogtreecommitdiff
path: root/examples/with-nanostores/astro.config.mjs
blob: 9f7dbd219cf5ce45fa29fd587dc167094fc0804d (plain) (blame)
1
2
3
4
5
6
7
8
9
// @ts-check
import { defineConfig } from 'astro/config';
import preact from '@astrojs/preact';

// https://astro.build/config
export default defineConfig({
	// Enable many frameworks to support all different kinds of components.
	integrations: [preact()],
});