summaryrefslogtreecommitdiff
path: root/packages/integrations/markdoc/test/fixtures/render-html/astro.config.mjs
blob: a230fe63173a9cc16c41d0f3f41255e81b97e531 (plain) (blame)
1
2
3
4
5
6
7
import { defineConfig } from 'astro/config';
import markdoc from '@astrojs/markdoc';

// https://astro.build/config
export default defineConfig({
  integrations: [markdoc({ allowHTML: true })],
});