mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
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',
|
|
});
|