Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
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 },
}
},
logHello: {
render: component('./src/components/LogHello.astro'),
})