diff options
| author | Yuval Adam <_@yuv.al> | 2025-05-23 14:50:37 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-05-23 14:50:37 +0200 |
| commit | 3386dfab4ed49ecd00678e2635449f9ba41156d5 (patch) | |
| tree | 5a80d7efd5f56a1c08b62bc3c6833a917afcf0eb /astro.config.mjs | |
| parent | 48b7a6c8fdc2127f6cea8333e3a4e22d3f2c2556 (diff) | |
Add react
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index 508cbec..9512ab2 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -3,9 +3,13 @@ import { defineConfig } from 'astro/config'; import tailwindcss from '@tailwindcss/vite'; +import react from '@astrojs/react'; + // https://astro.build/config export default defineConfig({ vite: { plugins: [tailwindcss()] - } + }, + + integrations: [react()] });
\ No newline at end of file |
