2022-03-15 20:27:17 +00:00
|
|
|
import { defineConfig } from 'astro/config';
|
2022-01-31 22:14:07 +00:00
|
|
|
import astroRemark from '@astrojs/markdown-remark';
|
|
|
|
|
2022-03-15 20:27:17 +00:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2022-01-31 22:14:07 +00:00
|
|
|
// Enable Custom Markdown options, plugins, etc.
|
|
|
|
markdownOptions: {
|
|
|
|
render: [
|
|
|
|
astroRemark,
|
|
|
|
{
|
|
|
|
syntaxHighlight: 'shiki',
|
2022-02-07 16:31:02 +00:00
|
|
|
shikiConfig: {
|
|
|
|
theme: 'dracula',
|
|
|
|
// Learn more about this configuration here:
|
|
|
|
// https://docs.astro.build/en/guides/markdown-content/#syntax-highlighting
|
|
|
|
},
|
2022-01-31 22:14:07 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
});
|