Import e2e (#311)

This commit is contained in:
Will Chen
2025-06-02 21:39:51 -07:00
committed by GitHub
parent 4997a8f2ff
commit 667fc42af4
31 changed files with 2513 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
import path from "path";
export default defineConfig(() => ({
server: {
host: "::",
port: 8080,
},
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
}));