summaryrefslogtreecommitdiff
path: root/examples/docs/astro.config.mjs
blob: 7ae8d6f7bfc223728acddbf6778bd056301679bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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(),
	],
});