mirror of
https://github.com/withastro/astro.git
synced 2024-12-30 22:03:56 -05:00
11 lines
245 B
JavaScript
11 lines
245 B
JavaScript
|
import { component, defineMarkdocConfig, nodes } from '@astrojs/markdoc/config';
|
||
|
|
||
|
export default defineMarkdocConfig({
|
||
|
tags: {
|
||
|
image: {
|
||
|
attributes: nodes.image.attributes,
|
||
|
render: component('./src/components/Image.astro'),
|
||
|
},
|
||
|
},
|
||
|
});
|