astro/examples/with-mdx/astro.config.mjs
2023-09-16 09:12:23 +01:00

8 lines
214 B
JavaScript

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