blob: a091e103c589ebe0fb9244cd2b8a0e91efc7283e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
// Enable Custom Markdown options, plugins, etc.
markdown: {
syntaxHighlight: 'shiki',
shikiConfig: {
theme: 'dracula',
// Learn more about this configuration here:
// https://docs.astro.build/en/guides/markdown-content/#syntax-highlighting
},
},
});
|