blob: cd63c33beb15c11b1e733fcf2f4a8a3314eaf8bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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'),
}
},
})
|