Stabilize runtime auth and E2E coverage

This commit is contained in:
Yun Chan 2026-06-26 14:47:00 +09:00
parent 6a3e3b541c
commit 188e899394
133 changed files with 55987 additions and 6775 deletions

View file

@ -10,8 +10,9 @@ export default defineConfig({
port: 5173,
proxy: {
"/api": {
target: "http://localhost:8000",
target: "http://127.0.0.1:8000",
changeOrigin: true,
ws: true,
// 백엔드 라우트는 /auth, /sessions, /health 로 노출되므로 /api 프리픽스 제거.
rewrite: (path) => path.replace(/^\/api/, ""),
},