From 5ffaa448fbf025faae03756ab7e1ed2bf15507c4 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Wed, 24 Sep 2025 09:00:21 +0200 Subject: Add react and tailwind --- astro.config.mjs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'astro.config.mjs') 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 -- cgit v1.3.1