markdoc.config.mjs 230 B

12345678910
  1. import { defineMarkdocConfig, component, nodes } from '@astrojs/markdoc/config';
  2. export default defineMarkdocConfig({
  3. nodes: {
  4. heading: {
  5. ...nodes.heading,
  6. render: component('./src/components/Heading.astro'),
  7. }
  8. }
  9. });