blob: 57011d4ee1fbe4897eb07b12e0f05e370cbb011c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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()
]
});
|