mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
ec7d2ebbd9
* fix(sitemap): url when rest parameter is used in page file names * Update .changeset/sour-ties-sparkle.md Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev> * Apply suggestions from code review --------- Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev> Co-authored-by: Emanuele Stoppa <my.burning@gmail.com>
7 lines
176 B
JavaScript
7 lines
176 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import sitemap from '@astrojs/sitemap';
|
|
|
|
export default defineConfig({
|
|
integrations: [sitemap()],
|
|
site: 'http://example.com'
|
|
})
|