feat: implement ui v1

This commit is contained in:
a.tolmachev
2026-03-25 19:27:31 +03:00
parent 39c88456b4
commit 85ffda67d3
32 changed files with 5084 additions and 62 deletions
+18
View File
@@ -0,0 +1,18 @@
import react from "@vitejs/plugin-react";
import { defineConfig } from "vitest/config";
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
proxy: {
"/api/admin": {
target: "http://127.0.0.1:3001",
changeOrigin: true,
},
},
},
test: {
environment: "jsdom",
},
});