init client

This commit is contained in:
Ashwin Bhat
2024-10-07 16:28:05 -07:00
parent 70a9f96712
commit 3cdd6faed7
33 changed files with 3256 additions and 0 deletions

13
client/vite.config.ts Normal file
View File

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