mirror of
https://github.com/withastro/astro.git
synced 2025-03-17 23:11:29 -05:00
11 lines
221 B
JavaScript
11 lines
221 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import preact from '@astrojs/preact';
|
|
import jsx from '@astrojs/jsx';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [
|
|
jsx(),
|
|
preact(),
|
|
]
|
|
});
|