mirror of
https://github.com/withastro/astro.git
synced 2025-09-25 23:15:10 +08:00

* update examples * add initial integrations * update tests * update astro * update ci * get final tests working * update injectelement todo * update ben code review * respond to final code review feedback
9 lines
227 B
JavaScript
9 lines
227 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import preact from '@astrojs/preact';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
// Enable Preact to support Preact JSX components.
|
|
integrations: [preact()],
|
|
});
|