summaryrefslogtreecommitdiff
path: root/examples/with-markdoc/markdoc.config.mjs
blob: 90608d56408ca933f0525fe95353653f84450f44 (plain) (blame)
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 },
			},
		},
	},
});