0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-03 22:29:08 -05:00
astro/examples/with-markdoc/astro.config.mjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
217 B
JavaScript
Raw Normal View History

import { defineConfig } from 'astro/config';
import markdoc from '@astrojs/markdoc';
2023-02-08 15:50:52 -05:00
import mdx from '@astrojs/mdx';
// https://astro.build/config
export default defineConfig({
2023-02-08 15:50:52 -05:00
integrations: [markdoc(), mdx()],
});