DeepSacrifice

This commit is contained in:
Eric Liu 2025-05-18 17:41:45 -07:00
parent bef6a0b99a
commit a88e3afddf
23 changed files with 1869 additions and 0 deletions

View file

@ -0,0 +1,16 @@
import react from "@vitejs/plugin-react";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [react()],
server: {
open: true,
// Local server runs on 3001, so we need to proxy requests to 3000
proxy: {
"/api": {
target: "http://localhost:3001",
changeOrigin: true,
},
},
},
});