feat: initialize frontend project with Vite, React, and Biome configuration

This commit is contained in:
Your Name
2026-04-09 13:23:45 +05:30
parent 4bdb1ee80d
commit 6bf186806b
21 changed files with 1248 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import tailwindcss from "@tailwindcss/vite";
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
});