blob: d797941ec2cb008967297cf8938fc34574eabfb6 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
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()],
});
|