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 20:50:52 +00:00
import mdx from '@astrojs/mdx';
// https://astro.build/config
export default defineConfig({
2023-02-08 20:50:52 +00:00
integrations: [markdoc(), mdx()],
});