6386c14d00
* 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
8 lines
243 B
JavaScript
8 lines
243 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import preact from '@astrojs/preact';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
// Enable the Preact integration to support Preact JSX components.
|
|
integrations: [preact()],
|
|
});
|