dashboard 형태의 UI 수정 및 고도화

This commit is contained in:
2026-03-04 08:29:39 +09:00
parent 618d5f8e6f
commit ccc9f7c634
17 changed files with 1296 additions and 224 deletions

View File

@@ -26,6 +26,18 @@ export default defineConfig({
secure: true,
rewrite: () => '/index/fearandgreed/graphdata',
},
// VIX (CBOE 변동성 지수) — Yahoo Finance 공개 API
// 프로덕션 nginx에서는 아래 proxy_pass 추가 필요:
// location /ext/vix {
// proxy_pass https://query1.finance.yahoo.com/v8/finance/chart/%5EVIX?interval=1d&range=1d;
// proxy_set_header Host query1.finance.yahoo.com;
// }
'/ext/vix': {
target: 'https://query1.finance.yahoo.com',
changeOrigin: true,
secure: true,
rewrite: () => '/v8/finance/chart/%5EVIX?interval=1d&range=1d',
},
},
},
})