1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import { defineConfig } from 'astro/config'; import sitemap from '@astrojs/sitemap'; export default defineConfig({ output: 'static', site: 'https://matthewkosarek.xyz', integrations: [sitemap()], markdown: { shikiConfig: { themes: { light: 'github-light', dark: 'dracula', }, defaultColor: false, }, }, });