astro.config.mjs 222 B

12345678
  1. import { defineConfig } from 'astro/config';
  2. import react from '@astrojs/react';
  3. // https://astro.build/config
  4. export default defineConfig({
  5. // Enable React to support React JSX components.
  6. integrations: [react()],
  7. });