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

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