Files
astro/examples/framework-react/astro.config.mjs
Emanuele Stoppa c2a347d8a6 chore(deps): upgrade development tools (#14040)
Co-authored-by: alexanderniebuhr <45965090+alexanderniebuhr@users.noreply.github.com>
2025-07-24 12:31:23 +01:00

11 lines
236 B
JavaScript

// @ts-check
import react from '@astrojs/react';
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
// Enable React to support React JSX components.
integrations: [react()],
});