1 2 3 4 5 6 7 8 9 10 11 12 13
import { defineMarkdocConfig, component } from '@astrojs/markdoc/config'; export default defineMarkdocConfig({ tags: { aside: { render: component('./src/components/Aside.astro'), attributes: { type: { type: String }, title: { type: String }, }, }, }, });