website/astro.config.mjs
Michał a09d21f28c Markdown Syntax highlighting
Vitesse theme
Draft tag in posts
leg
2024-05-25 12:39:20 +01:00

15 lines
302 B
JavaScript

import { defineConfig } from "astro/config";
import syntaxTheme from "./syntax-theme.json";
// https://astro.build/config
export default defineConfig({
output: "static",
markdown: {
syntaxHighlight: "shiki",
shikiConfig: {
theme: syntaxTheme,
},
},
})