diff options
| author | Yuval Adam <_@yuv.al> | 2025-09-24 09:00:21 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-09-24 09:01:21 +0200 |
| commit | 5ffaa448fbf025faae03756ab7e1ed2bf15507c4 (patch) | |
| tree | 186d2ef8466628844281abfd81478c7676ae636d /astro.config.mjs | |
| parent | 564ada7388d7fba9a952fecdae1db4ecbe0c7fd9 (diff) | |
Add react and tailwind
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index e762ba5..30ad428 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,5 +1,15 @@ // @ts-check import { defineConfig } from 'astro/config'; +import react from '@astrojs/react'; + +import tailwindcss from '@tailwindcss/vite'; + // https://astro.build/config -export default defineConfig({}); +export default defineConfig({ + integrations: [react()], + + vite: { + plugins: [tailwindcss()] + } +});
\ No newline at end of file |
