website/astro.config.mjs

15 lines
302 B
JavaScript
Raw Normal View History

import { defineConfig } from "astro/config";
2024-05-21 17:46:59 +00:00
import syntaxTheme from "./syntax-theme.json";
2024-05-21 17:46:59 +00:00
// https://astro.build/config
export default defineConfig({
output: "static",
markdown: {
syntaxHighlight: "shiki",
shikiConfig: {
theme: syntaxTheme,
},
},
})