blob: 82d25b854a64ca6584794d7a4bce51866bc87136 (
plain) (
blame)
1
2
3
4
5
6
7
|
import sitemap from '@astrojs/sitemap';
import { defineConfig } from 'astro/config';
export default defineConfig({
integrations: [sitemap()],
site: 'http://example.com'
})
|