mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
16 lines
352 B
JavaScript
16 lines
352 B
JavaScript
import { component, defineMarkdocConfig } from '@astrojs/markdoc/config';
|
|
|
|
export default defineMarkdocConfig({
|
|
tags: {
|
|
aside: {
|
|
render: component('./src/components/Aside.astro'),
|
|
attributes: {
|
|
type: { type: String },
|
|
title: { type: String },
|
|
}
|
|
},
|
|
logHello: {
|
|
render: component('./src/components/LogHello.astro'),
|
|
}
|
|
},
|
|
})
|