astro/examples/with-mdx/astro.config.mjs
2022-06-30 18:11:12 +00:00

8 lines
214 B
JavaScript

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