feat: Initialize React frontend project with Vite, Tailwind CSS, Radix UI, and global styling.

This commit is contained in:
SaelixCode
2026-02-25 11:43:06 -05:00
parent 431f29c490
commit cd006feb6a
7 changed files with 665 additions and 884 deletions
+2 -1
View File
@@ -1,10 +1,11 @@
import { defineConfig } from 'vite'
import tailwindcss from '@tailwindcss/vite'
import react from '@vitejs/plugin-react'
import path from 'path'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
plugins: [react(), tailwindcss()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),