blob: c711e7cb6a5297f9e28da4dcf6a461cddcdb1978 (
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({ ignoreIndentation: true })],
});
|