summaryrefslogtreecommitdiff
path: root/examples/docs/astro.config.mjs
blob: 9f97b3a891ef9df53fb0a1db441647cea68e91d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { defineConfig } from 'astro/config';

// https://astro.build/config
export default defineConfig({
	renderers: [
		// Enable the Preact renderer to support Preact JSX components.
		'@astrojs/renderer-preact',
		// Enable the React renderer, for the Algolia search component
		'@astrojs/renderer-react',
	],
});