blob: 42ecf7db49b7dfc66bd691dd35c3a9240e514a50 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
// Comment out "renderers: []" to enable Astro's default component support.
buildOptions: {
site: 'http://example.com/blog',
},
renderers: ['@astrojs/renderer-react'],
});
|