website/astro.config.mjs
deepsource-autofix[bot] 7884f0a028
style: format code with Prettier
This commit fixes the style issues introduced in 54e79be according to the output
from Prettier.

Details: None
2024-05-28 20:36:46 +00:00

17 lines
362 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()],
});