aboutsummaryrefslogtreecommitdiff
path: root/www-2/astro.config.ts
blob: 8d9898fe73974cea860f943ca353a7d3bf7cb4c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { defineConfig } from "astro/config";

// https://astro.build/config
export default defineConfig({
  markdown: {
    shikiConfig: {
      themes: {
        light: "github-light",
        dark: "github-dark",
      },
    },
  },
});