import { defineConfig } from "vitest/config"; import react from "@vitejs/plugin-react"; import path from "path"; export default defineConfig({ plugins: [react()], resolve: { alias: { "@": path.resolve(__dirname, "src"), }, }, server: { port: 5174, proxy: { "/api/tenant": { target: "http://localhost:8000", changeOrigin: true, }, "/api/admin": { target: "http://localhost:8000", changeOrigin: true, }, "/api/xcx/avatar": { target: "http://localhost:8000", changeOrigin: true, }, }, }, test: { globals: true, environment: "jsdom", setupFiles: [], }, });