feat(web): bootstrap react vite tailwind shadcn stack

This commit is contained in:
2026-04-05 02:31:18 +08:00
parent d7f27eaf1e
commit 579d63d39d
25 changed files with 3986 additions and 11 deletions
+13
View File
@@ -0,0 +1,13 @@
import path from "node:path";
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src")
}
}
});