markdoc.config.mjs 245 B

12345678910
  1. import { component, defineMarkdocConfig, nodes } from '@astrojs/markdoc/config';
  2. export default defineMarkdocConfig({
  3. tags: {
  4. image: {
  5. attributes: nodes.image.attributes,
  6. render: component('./src/components/Image.astro'),
  7. },
  8. },
  9. });