astro.config.mjs 248 B

12345678
  1. import { defineConfig } from 'astro/config';
  2. import preact from '@astrojs/preact';
  3. // https://astro.build/config
  4. export default defineConfig({
  5. // Enable many frameworks to support all different kinds of components.
  6. integrations: [preact()],
  7. });