summaryrefslogtreecommitdiff
path: root/examples/with-nanostores/astro.config.mjs
blob: 3e161041b59dc8e91cb2aefc8184b60208e9d14b (plain) (blame)
1
2
3
4
5
6
7
8
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()],
});