mirror of
https://github.com/withastro/astro.git
synced 2024-12-30 22:03:56 -05:00
10 lines
230 B
JavaScript
10 lines
230 B
JavaScript
import { component, defineMarkdocConfig, nodes } from '@astrojs/markdoc/config';
|
|
|
|
export default defineMarkdocConfig({
|
|
nodes: {
|
|
heading: {
|
|
...nodes.heading,
|
|
render: component('./src/components/Heading.astro'),
|
|
}
|
|
}
|
|
});
|