frontend build

This commit is contained in:
bbh
2025-07-30 21:24:17 +08:00
commit f72111e716
101 changed files with 15364 additions and 0 deletions

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

@@ -0,0 +1,14 @@
import path from "node:path"
import { TanStackRouterVite } from "@tanstack/router-vite-plugin"
import react from "@vitejs/plugin-react-swc"
import { defineConfig } from "vite"
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
plugins: [react(), TanStackRouterVite()],
})