18 lines
392 B
JavaScript
18 lines
392 B
JavaScript
import sitemap from '@astrojs/sitemap';
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
export default defineConfig({
|
|
site: 'https://schmelczer.dev',
|
|
trailingSlash: 'always',
|
|
integrations: [
|
|
sitemap({
|
|
filter: (page) => !new URL(page).pathname.startsWith('/writing/'),
|
|
}),
|
|
],
|
|
markdown: {
|
|
shikiConfig: {
|
|
theme: 'github-light',
|
|
wrap: false,
|
|
},
|
|
},
|
|
});
|