1a9c518f96
Provide TOTP-authenticated, role-controlled user and credit workflows with paginated audit data and SQL-backed statistics so operations can manage growth safely.
20 lines
315 B
TypeScript
20 lines
315 B
TypeScript
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",
|
|
},
|
|
});
|