From aa7c9a9a8d00f9e8a2930a4f0f8e53625078a673 Mon Sep 17 00:00:00 2001 From: white1107 Date: Fri, 20 Feb 2026 20:11:27 +0900 Subject: [PATCH] fix(web): add @tailwindcss/vite plugin to web config The web version was missing the Tailwind CSS Vite plugin, causing CSS to not load at all. This adds the same plugin configuration that exists in the tauri version. Fixes #121 --- web/vite.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/vite.config.ts b/web/vite.config.ts index 27a79a73..e3aa4013 100644 --- a/web/vite.config.ts +++ b/web/vite.config.ts @@ -1,9 +1,10 @@ import path from 'node:path'; import react from '@vitejs/plugin-react'; +import tailwindcss from '@tailwindcss/vite'; import { defineConfig } from 'vite'; export default defineConfig({ - plugins: [react()], + plugins: [react(), tailwindcss()], resolve: { alias: { '@': path.resolve(__dirname, '../app/src'),