astro/examples/with-markdown-shiki/astro.config.mjs
2022-04-02 18:30:48 +00:00

14 lines
375 B
JavaScript

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
},
},
});