summaryrefslogtreecommitdiff
path: root/examples/with-markdoc/astro.config.mjs
blob: d88ed20985329830a74f7aa2a4a33b8dbae013b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { defineConfig } from 'astro/config';
import markdoc from '@astrojs/markdoc';

// https://astro.build/config
export default defineConfig({
	integrations: [
		markdoc({
			tags: {
				aside: {
					render: 'Aside',
					attributes: {
						type: { type: String },
						title: { type: String },
					},
				},
			},
		}),
	],
});