aboutsummaryrefslogtreecommitdiff
path: root/packages/astro/e2e/fixtures/preact-component/astro.config.mjs
blob: 1dd95ac8598659c8b507c34ea59f65e3d1e3edc7 (plain) (blame)
1
2
3
4
5
6
7
8
import mdx from '@astrojs/mdx';
import preact from '@astrojs/preact';
import { defineConfig } from 'astro/config';

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