mirror of
https://github.com/Fluffy-Bean/website.git
synced 2025-05-14 08:02:16 +00:00
14 lines
302 B
JavaScript
14 lines
302 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,
|
|
},
|
|
},
|
|
})
|