summaryrefslogtreecommitdiff
path: root/examples/docs/astro.config.mjs
blob: 764f8ec096705f213e1dda4e1c1fb613e3d9505b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { defineConfig } from 'astro/config';
import preact from '@astrojs/preact';
import react from '@astrojs/react';

// https://astro.build/config
export default defineConfig({
	integrations: [
		// Enable Preact to support Preact JSX components.
		preact(),
		// Enable React for the Algolia search component.
		react(),
	],
	site: `https://astro.build`,
});