aboutsummaryrefslogtreecommitdiff
path: root/examples/framework-react/astro.config.mjs
blob: b35ad27e94b6007c833bcc8517157ceaf18637c6 (plain) (blame)
1
2
3
4
5
6
7
import { defineConfig } from 'astro/config';

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