blob: 0872080fe0f3a4e1118add683b0ae2b231f9b10f (
plain) (
blame)
1
2
3
4
5
6
7
|
import markdoc from '@astrojs/markdoc';
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
integrations: [markdoc({ allowHTML: true })],
});
|