init commit

This commit is contained in:
zihluwang
2025-03-26 19:06:46 +08:00
commit a46d254148
22 changed files with 3248 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { fileURLToPath, URL } from "node:url"
import { defineConfig } from "vite"
import react from "@vitejs/plugin-react"
import tailwindcss from "@tailwindcss/vite"
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
})