Add secure administrator operations console

Provide TOTP-authenticated, role-controlled user and credit workflows with paginated audit data and SQL-backed statistics so operations can manage growth safely.
This commit is contained in:
Rocky
2026-08-17 15:20:34 +08:00
parent 676bfd2451
commit 1a9c518f96
76 changed files with 14602 additions and 3 deletions
+19
View File
@@ -0,0 +1,19 @@
import { defineConfig } from "vitest/config";
export default defineConfig({
base: "/admin/",
server: {
proxy: {
"/v1/admin": {
target: "http://localhost:8080",
changeOrigin: true,
},
},
},
build: {
target: "es2022",
},
test: {
environment: "jsdom",
},
});