2022-01-31 22:14:07 +00:00
|
|
|
// Full Astro Configuration API Documentation:
|
|
|
|
// https://docs.astro.build/reference/configuration-reference
|
|
|
|
|
|
|
|
// @type-check enabled!
|
|
|
|
// VSCode and other TypeScript-enabled text editors will provide auto-completion,
|
|
|
|
// helpful tooltips, and warnings if your exported object is invalid.
|
|
|
|
// You can disable this by removing "@ts-check" and `@type` comments below.
|
|
|
|
import astroRemark from '@astrojs/markdown-remark';
|
|
|
|
|
|
|
|
// @ts-check
|
|
|
|
export default /** @type {import('astro').AstroUserConfig} */ ({
|
|
|
|
// Enable Custom Markdown options, plugins, etc.
|
2022-03-08 21:46:11 +00:00
|
|
|
renderers: [],
|
2022-01-31 22:14:07 +00:00
|
|
|
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
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
});
|