7 lines
151 B
JavaScript
7 lines
151 B
JavaScript
|
import { defineConfig } from 'astro/config';
|
||
|
import react from '@astrojs/react';
|
||
|
|
||
|
export default defineConfig({
|
||
|
// ...
|
||
|
integrations: [react()],
|
||
|
});
|