- 콘솔을 포탈/운영/관리자 3뷰로 분리(Portal·AdminPanel·AdminLogin·auth·util), ADMIN JWT 로그인 게이트 - 상단 우측 '서비스 매뉴얼'(public/manual.html) 링크, 로그인 화면 불필요 계좌조회 에러 제거 - 거래 조회: 서비스별 처리시각 5단계 타임라인 + pacs.008/pacs.002 전문 탭(/notifications 프록시) - 관리자: 서비스 제어 패널(기동/중지/재기동/로그, 4초 폴링, 인프라 상태 포함) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
23 lines
1011 B
TypeScript
23 lines
1011 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// RTGS 조회 콘솔 (:5174). Chanel(:8091)로 프록시하여 CORS 회피.
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
port: 5174,
|
|
proxy: {
|
|
'/accounts': { target: 'http://localhost:8091', changeOrigin: true },
|
|
'/inquiry': { target: 'http://localhost:8091', changeOrigin: true },
|
|
'/pay': { target: 'http://localhost:8091', changeOrigin: true },
|
|
'/meta': { target: 'http://localhost:8091', changeOrigin: true },
|
|
'/rawmessage': { target: 'http://localhost:8091', changeOrigin: true },
|
|
'/notifications': { target: 'http://localhost:8091', changeOrigin: true },
|
|
'/ledger': { target: 'http://localhost:8091', changeOrigin: true },
|
|
'/admin': { target: 'http://localhost:8099', changeOrigin: true },
|
|
'/console': { target: 'http://localhost:8099', changeOrigin: true },
|
|
'/gucci': { target: 'http://localhost:8095', changeOrigin: true },
|
|
},
|
|
},
|
|
})
|