mirror of
https://github.com/Fluffy-Bean/website.git
synced 2024-12-28 02:16:10 +00:00
f2d3cc3b4b
This commit fixes the style issues introduced in a09d21f
according to the output
from Prettier.
Details: None
15 lines
303 B
JavaScript
15 lines
303 B
JavaScript
import { defineConfig } from "astro/config";
|
|
|
|
import syntaxTheme from "./syntax-theme.json";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
output: "static",
|
|
markdown: {
|
|
syntaxHighlight: "shiki",
|
|
shikiConfig: {
|
|
theme: syntaxTheme,
|
|
},
|
|
},
|
|
});
|