Activate premium styling and RTL support

This commit is contained in:
Hamza-Ayed
2026-04-17 00:25:27 +03:00
parent 55d6f201a9
commit b9cdc94298
2 changed files with 3 additions and 1 deletions

View File

@@ -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()],
})