summaryrefslogtreecommitdiff
path: root/astro.config.mjs
blob: 64eb8c6a2bbb293a4f0de86564e301f3c43645dc (plain)
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,
    },
  },
});