website/astro.config.mjs
Michał 54e79beb30 Add MDX support
Start writing a blog and clean up/hide tester stuff
2024-05-28 21:36:29 +01:00

16 lines
332 B
JavaScript

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