0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-17 23:11:29 -05:00
astro/examples/jsx/astro.config.mjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
221 B
JavaScript
Raw Permalink Normal View History

2022-06-17 10:25:11 -05:00
import { defineConfig } from 'astro/config';
import preact from '@astrojs/preact';
import jsx from '@astrojs/jsx';
// https://astro.build/config
export default defineConfig({
integrations: [
2022-06-17 12:44:22 -05:00
jsx(),
2022-06-17 10:25:11 -05:00
preact(),
]
});