mirror of
https://github.com/withastro/astro.git
synced 2025-09-28 16:44:10 +08:00
10 lines
272 B
JavaScript
10 lines
272 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()],
|
|
site: `http://astro.build`,
|
|
});
|