feat(frontend): Scaffold React project with Vite, Tailwind CSS v4, and shadcn/ui

This commit is contained in:
Yunxiao Xu
2026-02-11 19:20:08 -08:00
parent 0dfdef738d
commit 5d0130731d
19 changed files with 9672 additions and 0 deletions

14
frontend/vite.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import path from "path"
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()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
})