mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
12 lines
237 B
JavaScript
12 lines
237 B
JavaScript
|
import { defineMarkdocConfig, nodes } from '@astrojs/markdoc/config';
|
||
|
import Heading from './src/components/Heading.astro';
|
||
|
|
||
|
export default defineMarkdocConfig({
|
||
|
nodes: {
|
||
|
heading: {
|
||
|
...nodes.heading,
|
||
|
render: Heading,
|
||
|
}
|
||
|
}
|
||
|
});
|