0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00
astro/packages/integrations/markdoc/test/fixtures/render-with-components/astro.config.mjs
2024-04-03 20:50:06 +00:00

8 lines
226 B
JavaScript

import markdoc from '@astrojs/markdoc';
import preact from '@astrojs/preact';
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
integrations: [markdoc(), preact()],
});