mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
12 lines
220 B
JavaScript
12 lines
220 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()
|
||
|
]
|
||
|
});
|