2022-03-15 20:27:17 +00:00
|
|
|
import { defineConfig } from 'astro/config';
|
2022-03-18 22:35:45 +00:00
|
|
|
import preact from '@astrojs/preact';
|
|
|
|
import react from '@astrojs/react';
|
2021-08-23 21:07:03 +00:00
|
|
|
|
2022-03-15 20:27:17 +00:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2022-03-18 22:35:45 +00:00
|
|
|
integrations: [
|
|
|
|
// Enable Preact to support Preact JSX components.
|
|
|
|
preact(),
|
|
|
|
// Enable React for the Algolia search component.
|
|
|
|
react(),
|
2021-08-14 00:58:00 +00:00
|
|
|
],
|
2022-07-21 17:45:59 +00:00
|
|
|
site: `http://astro.build`
|
2021-08-23 21:07:03 +00:00
|
|
|
});
|