From b9cdc94298994e78e4051bbb1d0236f9a8c6f0d7 Mon Sep 17 00:00:00 2001 From: Hamza-Ayed Date: Fri, 17 Apr 2026 00:25:27 +0300 Subject: [PATCH] Activate premium styling and RTL support --- frontend/package.json | 1 + frontend/vite.config.ts | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/package.json b/frontend/package.json index 0fd0e87..c21d5a7 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -38,6 +38,7 @@ "globals": "^17.4.0", "postcss": "^8.5.10", "tailwindcss": "^4.2.2", + "@tailwindcss/vite": "^4.2.2", "typescript": "~6.0.2", "typescript-eslint": "^8.58.0", "vite": "^8.0.4" diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 8b0f57b..c4069b7 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -1,7 +1,8 @@ import { defineConfig } from 'vite' import react from '@vitejs/plugin-react' +import tailwindcss from '@tailwindcss/vite' // https://vite.dev/config/ export default defineConfig({ - plugins: [react()], + plugins: [react(), tailwindcss()], })