1
0
Fork 0
mirror of https://github.com/Fluffy-Bean/website.git synced 2025-02-17 19:00:05 +00:00
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()],
});