astro-reactive-form/apps/docs/astro.config.mjs
2022-11-12 19:54:13 +01:00

14 lines
375 B
JavaScript

import { defineConfig } from 'astro/config';
import preact from '@astrojs/preact';
import react from '@astrojs/react';
// https://astro.build/config
export default defineConfig({
integrations: [
// Enable Preact to support Preact JSX components.
preact(),
// Enable React for the Algolia search component.
react(),
],
site: `https://docs.astro-reactive.dev`,
});