blob: 29d846359bb20b2ee28430e15276bb0f65777205 (
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()],
});
|