blob: 517f5a62e872065d1eabedda1860405a547624e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
// @ts-check
import { defineConfig } from 'astro/config';
import markdoc from '@astrojs/markdoc';
// https://astro.build/config
export default defineConfig({
integrations: [markdoc()],
});
|