website/astro.config.mjs

17 lines
362 B
JavaScript
Raw Normal View History

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