2022-03-15 20:27:17 +00:00
|
|
|
import { defineConfig } from 'astro/config';
|
2022-03-18 22:35:45 +00:00
|
|
|
import react from '@astrojs/react';
|
2021-11-15 15:33:51 +00:00
|
|
|
|
2022-03-15 20:27:17 +00:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2022-03-18 22:35:45 +00:00
|
|
|
integrations: [react()],
|
2022-04-03 19:02:57 +00:00
|
|
|
site: 'http://example.com',
|
|
|
|
base: '/blog',
|
2021-11-15 15:33:51 +00:00
|
|
|
});
|