2022-03-15 15:27:17 -05:00
|
|
|
import { defineConfig } from 'astro/config';
|
2022-03-18 15:35:45 -07:00
|
|
|
import react from '@astrojs/react';
|
2021-11-15 10:33:51 -05:00
|
|
|
|
2022-03-15 15:27:17 -05:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2022-03-18 15:35:45 -07:00
|
|
|
integrations: [react()],
|
2022-04-02 13:29:59 -05:00
|
|
|
site: 'http://example.com/blog',
|
2021-11-15 10:33:51 -05:00
|
|
|
});
|