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