2022-03-15 15:27:17 -05:00
|
|
|
import { defineConfig } from 'astro/config';
|
2021-11-15 10:33:51 -05:00
|
|
|
|
2022-03-15 15:27:17 -05:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2021-12-22 16:11:05 -05:00
|
|
|
// Comment out "renderers: []" to enable Astro's default component support.
|
|
|
|
buildOptions: {
|
|
|
|
site: 'http://example.com/blog',
|
|
|
|
},
|
|
|
|
renderers: ['@astrojs/renderer-react'],
|
2021-11-15 10:33:51 -05:00
|
|
|
});
|