chore: install tailwindcss

This commit is contained in:
shafin-r
2026-01-06 15:48:47 +06:00
parent cf46287400
commit bd6f1d2333
5 changed files with 380 additions and 41 deletions

View File

@ -1,7 +1,8 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
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()],
});