dc6e89f0a3
* New script behavior * Astro.request * Reverted `deno` to `node` * Updated subpath
9 lines
217 B
JavaScript
9 lines
217 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import react from '@astrojs/react';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [react()],
|
|
site: 'http://example.com',
|
|
base: '/blog',
|
|
});
|