/** * @type {import('vite').UserConfig} */ import { defineConfig } from "vite"; import react from "@vitejs/plugin-react"; export default defineConfig({ plugins: [ react(), ], resolve: { alias: [{ find: "@", replacement: "/src" }], }, server: { port: 10030, proxy: { "/api": { target: "http://localhost:5000", changeOrigin: true, ws: true, }, }, }, });