mirror of
https://github.com/Fluffy-Bean/website.git
synced 2024-12-28 02:16:10 +00:00
7884f0a028
This commit fixes the style issues introduced in 54e79be
according to the output
from Prettier.
Details: None
17 lines
362 B
JavaScript
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()],
|
|
});
|